@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap'); html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
}

a {
    color: #38B6FF;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #715D57;
}

a:focus, input:focus, textarea:focus, button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
}

h3 {
    font-size: 36px;
}

h2, .sub-title {
    font-size: 46px;
}

.container {
    max-width: 1280px;
    width: 95%;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #3A1C13;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* --- Button Code --- */
.custom-btn a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 18px 45px;
    border-radius: 0;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    color: #3A1C13;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    background: #fff;
}

.custom-btn a:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.custom-btn a:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.custom-btn a:before, .custom-btn a:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #715D57;
    border-radius: 50%;
    z-index: -1;
}

.custom-btn a:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn a:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn a:hover {
    text-decoration: none;
    color: #ffffff;
}

a.dark-btn {
    color: #ffffff;
    background-color: #3A1C13;
}

a.dark-btn:hover {
    color: #ffffff;
}

a.light-btn {
    color: #000000;
    background-color: #ffffff;
}

a.light-btn:hover {
    color: #ffffff;
}

/* --- Header Code --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 10px 0;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

header .container {
    max-width: 1420px;
}

header.fixed-header {
    padding: 10px 0;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    background: #000;
}

header.fixed-header ul.navbar-nav {
    padding: 20px 0;
}

header .logo-div img {
    height: 100px;
    transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-div img {
    height: 70px;
}

header .row {
    align-items: center;
}

ul.header-details {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

ul.header-details li img {
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

ul.header-details li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: #FFF;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

ul.header-details li:hover a {
    color: #3A1C13;
}

header.fixed-header ul.header-details li:hover a {
    color: #715D57
}

ul.header-details li:hover img {
    transform: scale(1.05);
}

ul.header-details li a b {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

ul.header-details li {
    margin-right: 50px;
}

ul.header-details li:last-child {
    margin-right: 0;
}

/* --- Footer Code --- */
footer p {
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer p, footer a {
    color: #ffffff;
    margin: 0;
}

footer h3 a:hover {
    color: #715D57;
    border-bottom: 1px solid #715D57;
}

footer {
    background: #3A1C13;
    margin-top: -100px;
}

.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: #715D57;
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #715D57;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.back-to-top:hover {
    background-color: #fff;
}

.back-to-top:hover i {
    color: #3A1C13;
}

p {
    margin-top: 0;
    margin-bottom: 0rem;
}

/* --- Home Page Code --- */
.banner-section {
    padding: 120px 0 0 0;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    height: 800px;
}

.banner-content-div {
    max-width: 100%;
    text-align: center;
    padding-top: 7%;
}

.banner-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner-bg1_overlay.png');
    opacity: 0.5;
    z-index: -1;
}

.banner-section h1 {
    margin-bottom: 30px;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 44px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    /* 123.077% */
}

.banner-section h1 span {
    font-weight: 800;
    display: block;
    margin-top: 10px;
}

.banner-section p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.form_fields p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}

.submit_btn p {
    display: flex;
    justify-content: flex-end;
}
.submit_btn p {
    display: inline-block;
    /*overflow:hidden;*/
    position: relative;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    margin: 15px 0 0;
    height: 56px;
    background-color: #3A1C13;
}
.submit_btn p:before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.submit_btn p:after {
    right: -20px;
    transform: translate(50%, -50%);
}
/*.submit_btn p:before, .submit_btn p:after {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    content: "";*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-color: #715D57;*/
/*    border-radius: 50%;*/
/*    z-index: 1;*/
/*}*/
.submit_btn p:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.submit_btn p:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.form-box {
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
    margin-bottom: -12%;
}

.form-box h3 {
    background-color: transparent;
    padding: 25px 55px 0;
    margin: 0;
    text-align: left;
    color: #000;
    font-family: Raleway;
    font-size: 44px;
    font-style: normal;
    font-weight: 300;
    line-height: 66px;
}

.form-box form br {
    display: none;
}

.form-box form input[type="submit"] {
    width: fit-content;
    display: block;
    margin: 0;
    text-transform: uppercase;
    background-color: transparent;
    color: #ffffff;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    padding: 0px 80px;
    border-radius: 2px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 9;
    position:relative;
}

.form-box form input[type="submit"]:hover {
    color: #ffffff !important;
}

.form-box form .submit p {
    display: flex;
    justify-content: flex-end;
}

.form-box form input, .form-box form textarea, .form-box form select {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #F6F6F6;
    background: #F6F6F6;
    color: #848484;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
 .form-box form select{
     background-image:url('../images/select-ar1.png');
     background-repeat:no-repeat;
     background-position: 96% center;
 }
.form-box form select {
    -webkit-appearance: none;
}

.form-box form span.wpcf7-form-control-wrap[data-name="y-service"] {
    position: relative;
}

.form-box form span.wpcf7-form-control-wrap[data-name="y-service"]:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    background: url(../images/select-ar1.png) no-repeat center #ffffff;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.form-box form input::placeholder, .form-box form textarea::placeholder {
    color: #848484;
}

.form-box form textarea {
    height: 120px;
    resize: none;
}

.form-box form {
    padding: 5px 55px 40px 55px;
}

.form-box form span.wpcf7-form-control-wrap {
    position: relative;
    display: block;
    padding: 10px 0;
    width: 32%;
}

.form-box form span.wpcf7-spinner, .form-box form span.wpcf7-not-valid-tip, .form-box form .wpcf7-response-output {
    /* display: none; */
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    border: none !important;
}

.form-box form input.wpcf7-not-valid, .form-box form select.wpcf7-not-valid, .form-box form textarea.wpcf7-not-valid {
    border: 2px solid red;
}

.transparent-title {
    font-size: 160px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.0;
    color: transparent;
    -webkit-text-stroke: 1px rgba(56, 182, 255, 0.15);
    white-space: nowrap;
    position: absolute;
    z-index: -1;
}

.about-section {
    padding: 100px 0;
    background-color: #F6F6F6;
    clear: both;
}

.about-section h2 {
    color: #3A1C13;
    font-family: Raleway;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.about-section .content-div {
    padding-right: 40px;
}

.about-section .transparent-title {
    top: -2%;
    left: -10%;
}

.about-section .content-col {
    position: relative;
    display: flex;
    align-items: center;
}

.m-image-box {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.m-long-box {
    max-width: 72%;
    position: relative;
}

.m-small-box {
    max-width: 55%;
    border: 7px solid #ffffff;
    position: absolute;
    left: 0;
    bottom: 35px;
    margin: auto;
    height: fit-content;
    z-index: 9;
}

.service-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 150px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-section .heading-row {
    align-items: flex-end;
}

.service-section h2 {
    font-size: 46px;
}

.m-service-box {
    position: relative;
    cursor: pointer;
    border: 1px solid #D9D9D9;
    height: 100%;
}

.service-slider .slick-arrow {
    width: 50px;
    height: 50px;
}

.service-slider .slick-arrow:before {
    color: #000;
    font-size: 50px;
    transition: all 0.3s ease-in-out;
}

.service-slider .slick-prev {
    left: -3%;
}

.service-slider .slick-next {
    right: -3%;
}

.s-item {
    padding: 0 10px;
}

.m-service-box .content {
    bottom: 0;
    padding: 30px;
    width: 100%;
}

.m-service-box h3 {
    position: relative;
    display: inline-block;
    color: #3A1C13;
    font-family: Raleway;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.m-service-box p {
    margin: 6px 0;
    color: #000;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
}

.m-service-box:hover img {
    transform: scale(1.05);
}

.m-service-box img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.m-service-box::before, .m-service-box::after {
    content: '';
    pointer-events: none;
    position: absolute;
    border: 0px solid transparent;
    width: 0%;
    height: 0%;
    bottom: 0%;
    right: 0%;
    z-index: 9;
}

.m-service-box::before {
    border-bottom-width: 3px;
    border-left-width: 3px;
}

.m-service-box::after {
    border-top-width: 3px;
    border-right-width: 3px;
}

.m-service-box:hover::before, .m-service-box:hover::after {
    border-color: #3A1C13;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
}

.m-service-box:hover::before {
    transition-delay: 0s, 0s, 0.3s;
}

.m-service-box:hover::after {
    transition-delay: 0s, 0.3s, 0s;
}

.image {
    overflow: hidden;
}

.service-section .transparent-title {
    top: 1%;
}

.whychoose-section {
    padding: 150px 0 50px 0;
    position: relative;
    z-index: 1;
}

.whychoose-section h2 {
    font-size: 46px;
}

.whychoose-section .container {
    position: relative;
}

.whychoose-section .transparent-title {
    top: -12%;
    left: -6%;
}

.whychoose-section .m-long-box {
    margin-left: auto;
    max-width: 80%;
}

.whychoose-section .m-small-box {
    top: inherit;
    right: inherit;
    left: -6%;
    bottom: 30px;
}

.whychoose-section ul.service-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    max-width: 620px;
}

.whychoose-section ul.service-list li {
    margin-bottom: 20px;
}

.whychoose-section ul.service-list li b {
    text-transform: uppercase;
    display: block;
    font-size: 20px;
}

.whychoose-section ul.contact-list {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}

.whychoose-section ul.contact-list li {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-right: 10%;
}

.whychoose-section ul.contact-list li:last-child {
    margin-right: 0;
}

.whychoose-section ul.contact-list li img {
    width: 60px;
    margin-right: 15px;
}

.fancybox-image {
    max-width: 80%;
    right: 0;
    margin: 0 auto;
    object-fit: contain;
}

.gallery-section {
    position: relative;
    z-index: 1;
    padding: 100px 0px;
    background-color: #F6F6F6;
}

.gallery-section h2 {
    font-size: 46px;
}

.gallery-section .container {
    position: relative;
}

.gallery-section .row {
    align-items: flex-end;
}

.gallery-section .transparent-title {
    top: -10%;
    left: -6%;
}

.gallery-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-row .g-item {
    background-color: #3A1C13;
    overflow: hidden;
    margin: 10px 0px;
    max-height: 344px;
}

.gallery-row .g-item img {
    transition: all 0.5s ease-in-out;
}

.gallery-row .g-item:hover img {
    opacity: 0.2;
    transform: scale(1.2) rotate(2deg);
}

.gallery-row .g-item:nth-child(1), .gallery-row .g-item:nth-child(6) {
    width: 39%;
}

.gallery-row .g-item {
    width: 29%;
}

.gallery-row .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    padding: 50px 0px;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-section .transparent-title {
    top: 0;
    left: -6%;
}

.testimonials-section .sub-title {
    margin-bottom: 10px;
}

/* .testimonials-section .row {
    align-items: center;
} */
.ts-col {
    padding: 90px 15px;
}

.tm-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-title {
    color: #3A1C13;
    text-align: center;
    font-family: Raleway;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.testimonial-slider {
}

.testimonial-slider .slick-track {
    display: flex;
}

.testimonial-slider .slick-track .t-item {
    height: auto;
}

.testimonial-slider .slick-arrow:before {
    display: none;
}

.testimonial-slider .slick-arrow {
    top: inherit;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 25px;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .slick-arrow:hover {
    opacity: 1;
}

.testimonial-slider .slick-prev {
    left: -15%;
    right: 0;
}

.testimonial-slider .slick-prev img {
    object-position: left center;
}

.testimonial-slider .slick-next {
    left: 0;
    right: -15%;
}

.testimonial-slider .slick-next img {
    object-position: right center;
}

.testimonial-slider .slick-arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-item {
    position: relative;
    background: #F6F6F6;
    margin: 10px 15px;
    padding: 25px;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 10%);
    border: 2px solid transparent;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.t-item::before, .t-item::after {
    content: '';
    pointer-events: none;
    position: absolute;
    border: 0px solid transparent;
    width: 0%;
    height: 0%;
    bottom: 0%;
    right: 0%;
}

.t-item::before {
    border-bottom-width: 3px;
    border-left-width: 3px;
}

.t-item::after {
    border-top-width: 3px;
    border-right-width: 3px;
}

.t-item:hover::before, .t-item:hover::after {
    border-color: #3A1C13;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
}

.t-item:hover::before {
    transition-delay: 0s, 0s, 0.3s;
}

.t-item:hover::after {
    transition-delay: 0s, 0.3s, 0s;
}

.t-item img {
    margin-bottom: 20px;
    width: 60px;
}

.t-item p {
    color: #000;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.t-item p.name {
    margin-bottom: 0;
    color: #000;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    margin-top: 15px;
}

.t-item p.company {
    font-size: 16px;
}

.banner-section.thanks-banner {
    padding: 120px 0;
    height: 78vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner-section.thanks-banner h1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 1.1;
}

.banner-section.thanks-banner h5 {
    color: #fff;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
}

@-moz-document url-prefix() {
    .form-box form select {
        color: #959595;
    }
}

/* --- Animation Code --- */
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        transform: scale(2.0);
    }

    100% {
        left: 50%;
        transform: scale(15.0);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        transform: scale(2.0);
    }

    100% {
        right: 50%;
        transform: scale(15.0);
    }
}

@keyframes animdivider {
    0% {
        left: 0;
        opacity: 0.5;
    }

    100% {
        left: 50px;
        opacity: 1;
    }
}

.bottom_cta h3 {
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-style: normal;
    font-weight: 800;
    line-height: 46px;
    /* 127.778% */
    text-transform: uppercase;
}

.bottom_cta h3 a {
    color: #FFF;
    font-family: Raleway;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 46px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
}

.bottom_cta {
    padding: 180px 0px 70px;
    border-bottom: 1px solid #715D57;
}

.row.copyright-text {
    padding: 30px 0px;
}

.heading_wapper {
    text-align: center;
    margin-bottom: 50px;
}

.heading_wapper p {
    margin-top: 15px;
}

section.google_map iframe {
    border: 2px solid #3A1C13 !important;
}

section.cta-section {
    padding: 100px 0px;
    background-size: cover;
    background-position: center center;
}

.cta-row {
    text-align: center;
    padding: 0 8%;
}

.cta-row h3 b {
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px;
}

.cta-row h3 {
    color: #FFF;
    font-family: Raleway;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 54px;
    margin: 0;
}

img.quote-icon {
    padding: 30px 0px 20px;
}

.m-service-box .custom-btn a {
    font-size: 16px;
    font-weight: 800;
    padding: 15px 30px;
}

.row.m-service-row {
    position: relative;
}

img.dots-1 {
    position: absolute;
    left: -50px;
    top: -50px;
    width: auto;
    transform: rotate(90deg);
}

img.dots-2 {
    position: absolute;
    right: -50px;
    top: -50px;
    width: auto;
    transform: rotate(108deg);
}
section.banner-form-section {
    background-color: #F6F6F6;
    padding-bottom: 110px;
}

div#formbox {
    margin-top: -15%;
    position: relative;
    z-index: 9;
}
.content-div h2 span {
    color: #3A1C13;
    font-family: Raleway;
    font-size: 46px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.content-div p {
    color: #000;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; 
    padding: 10px 0;
}
.submit_btn {
    text-align: right;
}
@keyframes blinking-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blinking-animation 2s infinite;
    color:#fff;
    display: block;
    margin-bottom: 12px;
}
.gallery_box img {
    height: 350px;
    border: 2px solid #000;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery_box {
    
    margin: 0px 6px;
    transition:.4s;
}
.gallery_box a{
    position: relative;
}
.gallery_box a:after{
    content:'';
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background:hwb(13.85deg 7.45% 77.25% / 45%);
    opacity:0;
}
.gallery_box a:hover:after{
    opacity:1
}
.slick-prev:before, .slick-next:before {
    opacity: 1 !important;
    color: #3A1C13  !important;
    font-size: 24px !important;
}