@font-face {
    font-family: 'Gilroy';
    src: url(/fonts/Gilroy-Bold.woff2) format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url(/fonts/Gilroy-Medium.woff2) format('truetype');
    font-style: normal;
    font-weight: 500
}

@font-face {
    font-family: 'Gilroy';
    src: url(/fonts/Gilroy-Regular.woff2) format('truetype');
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: 'Gilroy';
    src: url(/fonts/Gilroy-Semibold.woff2) format('truetype');
    font-style: normal;
    font-weight: 700
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy", Arial, sans-serif !important;
	list-style: none;
}

ul {
    padding-left: 0 !important;
}

.back-container {
    background: linear-gradient(135deg, #edeef226, #fafafabf);
    ;
    /* position: fixed !important; */
    width: 100%;
    z-index: 10;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

}

.logo-box a {
    display: flex !important;
    flex-direction: column;
    text-decoration: none;
    color: black;
    line-height: 1;
    width: fit-content;
}

.logo-box a span {
    margin-left: 80px;
    font-size: 9px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo {
    width: 180px;
    transition: .4s;
    animation-name: Logoanimation;
    animation-duration: 5.2s;
    animation-delay: 5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    transform: rotateZ(0deg);
}


@keyframes Logoanimation {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.1);
    }

    10% {
        transform: scale(0.8);
    }

    15% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(0.8);
    }

    35% {
        transform: scale(1);
    }

    40% {
        transform: scale(1);
    }

    45% {
        transform: scale(1);
    }

    50% {
        transform: scale(1);
    }

    55% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    25% {
        transform: scale(1);
    }

    30% {
        transform: scale(1);
    }

}

.nav-right-category ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
    align-items: center;
    margin: 0px;

}

.nav-right-category ul li a {
    text-decoration: none;
    color: black;
    gap: 0px;
    align-items: center;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    text-transform: uppercase;




}

.mobile-number .number-i {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;

}

.mobile-number a img {
    width: 20px;
    height: 20px;

}


.mobile-number a p {
    margin-bottom: 0;
    font-size: 17px !important;
    font-weight: 300;

}

.call-to-action ul {
    margin-bottom: 0;
    gap: 15px;

}

.call-to-action li {
    list-style-type: none;

}

.call-to-action li a {
    text-decoration: none;


}

.greenp {
    color: #65AB0E !important;
    margin-left: -5px;
}

.magic {
    display: flex;
    /* gap: 30px; */
}

.magic a:hover {
    color: black;
}

.magic-btn {
    background-color: #8ac426 !important;
    border-radius: 18px;
    animation: magic 3s ease infinite;
    white-space: nowrap;

}

.magic-btn-1 {
    padding: 5px 20px;
}

.btn {
    padding: 0 !important;
}

.magic-btn span {
    color: white !important;
    text-transform: uppercase;
}

.btn:focus {
    box-shadow: none;
}

@keyframes magic {
    15% {
        box-shadow: 0 0 0 5px #65AB0E;
    }

    25% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 10px #B3E042;
    }

    35% {
        box-shadow: 0 0 0 15px #B3E042, 0 0 0 20px #B3E042;
    }
}


/* Dropdawn menu */

.dropdawn {
    position: relative;
    z-index: 3;

}

.dropdawn-services {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100px;
    left: 0;
    padding: 0;
    background-color: white;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    gap: 0;


}

.drop-ser {
    gap: 0 !important;
}

.dropdawn-services li {
    border-bottom: 1px solid black !important;
    width: 100%;
    background: linear-gradient(135deg, #edeef226, #fafafabf);

}

.nav-right-category .dropdawn-services li a {
    display: inline-block;
    color: black;
    white-space: nowrap !important;
    padding: 10px 35px !important;

}

.dropdawn:hover .dropdawn-services {
    visibility: visible;
    opacity: 1;
    top: 30px;
}

.nav-right-category ul li .dropdawn-services li {
    transition: 0.5s;


}

.dropdawn .dropdawn-services li:hover {
    background: antiquewhite !important;
    color: black !important;
}

.second-logo {
    display: none;
}

.ham-number {
    display: none;
}

@media screen and (max-width:992px) {

    .second-logo {
        display: block;
    }

    .ham-number {
        display: block;
    }

    .ham-number a {
        color: black !important;
        padding: 10px 30px;
        border: 0 solid transparent;
        border-radius: 10px;
        font-size: 14px !important;
        color: white !important;
        border-bottom: 1px solid #000 !important;
        transition: 0.3s !important;
        box-shadow: 0 5px 5px -1px #000;
    }





    .call-to-action,
    .hamburger {
        display: none;
    }

    nav ul.hamburger {
        position: fixed;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-color: white;
        top: 0px;
        right: 0;
        justify-content: center;
        align-items: center;
        right: -200%;
        z-index: 122;
        transition: 0.5s;
        gap: 20px;
    }

    nav ul.hamburger.active {
        right: 0 !important;
    }



    nav ul.hamburger li a,
    nav ul.hamburger li a p {
        color: black !important;
        font-size: 18px;
        text-shadow: 0px 1px 0px rgba(0, 0, 0, .6);
    }




    nav ul.hamburger li svg {
        display: none;
    }


    .mobile-number a p {
        color: white !important;
    }

    .dropdawn:hover ul {
        display: none;
    }

    .hamicon {
        display: flex;
        gap: 6px;
        width: 30px;
        flex-direction: column;
        position: relative;
        z-index: 2222222223;
    }

    .hamicon span {
        width: 100%;
        height: 2px;
        background: black;
        transition: 0.6s;
    }

    .hamicon.active span {
        background-color: black !important;
    }


}







/* Slider-section */

.swiper-slide {
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #edeef226, #fafafabf);
}

.photo-slider {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

.photo-slider::before {
    content: '';
    position: absolute;
    left: 30;
    z-index: 1;
    width: 500px;
    height: 400px;
    background: linear-gradient(90deg, #65AB0E 0%, #B3E042 100%);
    opacity: 0.8;
    filter: blur(35px);
    border-radius: 100%;
}

.photo-slider img {
    max-width: 500px !important;
    position: absolute;
    z-index: 2;


}

.text-slider {
    width: 50%;
    font-size: 20px;
    /* margin-left: 200px; */
    display: flex;
    flex-direction: column;
}

.text-slider-h {
    font-size: 60px;
    font-weight: 600;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, .6);
}

.text-slider-span {
    font-size: 18px;
    color: #595959;
}

.text-slider a {
    display: flex;
    align-items: center;
    padding: 10px 50px;

    background: #65AB0E;
    text-decoration: none !important;
    width: fit-content;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    position: relative;
    margin-top: 30px;
    transition: 0.6s !important;
    font-size: 15px;

}

.liststyle {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 100%;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: absolute;
    right: 30px;
}

.readmore {
    transition: 0.4s;
}

.text-slider a:hover {
    background: linear-gradient(90deg, #65AB0E 0%, #B3E042 100%);
    transition: 0.6s !important;
}

.text-slider a:hover .liststyle {
    left: 200px;
    transition: 0.6s !important;
}

.new-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #000;
    font-size: 35px;
    font-weight: 600;
    margin: 0 50px !important;


}

/* Second - slider */

.owl-carousel {
    margin: 40px 0;
}

.item {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.div-ul {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
}

.item h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
}

.owl-prev,
.owl-next,
.owl-dots {
    display: none !important;
}

/* Our services */
.servrice-section {
    background-color: #F5FFE9;
}

.services-head {
    padding: 20px 0;
}

.service-row {
    display: flex;
    justify-content: center;
    row-gap: 10px;
    column-gap: 10px;
    padding-bottom: 40px;
}

.services-head {
    margin-bottom: 30px;
    position: relative;
    margin-bottom: 30px;
}

.services-head h2 {
    font-size: 36px;
    font-weight: 600;
}

.services-head p {
    margin-bottom: 0;
}

.services-main {

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
    width: 360px !important;
    transition: 0.1s;
    border-radius: 10px;

}

.services-main:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.services-main a {
    text-decoration: none !important;


}

.services-main a:hover {
    color: black;

}

.background-ser {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, #65AB0E 0%, #B3E042 100%);
    opacity: 0.8;
    filter: blur(35px);
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: ser 2s ease infinite;

}

@keyframes ser {
    15% {
        box-shadow: 0 0 0 5px #65AB0E;
    }

    25% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 20px #B3E042;
    }

    50% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 20px #B3E042;
    }
}

.services-box {
    padding: 30px;
    position:relative;
    height:600px;
}

.ser-img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5FFE9;
    border-radius: 50%;
}

.ser-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    padding: 10px;

}

.ser-content {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.ser-head-one {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.services-ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.services-ul li{
        list-style-type: disclosure-closed;
}

.services-ul,
.services-span-one {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400 !important;
}

.ser-end {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 20px;
    align-items: center;
    position:absolute;
    bottom:-50px !important;
}

.magic-services {
    white-space: nowrap;
    padding: 0px 20px !important;
    animation: ser-2 1s ease infinite;

}

@keyframes ser-2 {
    10% {
        box-shadow: 0 0 0 5px #65AB0E;
    }

    15% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 10px #B3E042;
    }


}

.first-span,
.second-span {
    font-size: 25px;
    font-weight: bold;

}

.second-span {
    color: #65AB0E;
}

/* Our References */
.rf-section {
    background-color: white;


}

.rf-row {
    margin: 40px 0;
    row-gap: 20px;
}

.references {
    width: 100%;
    height: 500px;
    background-color: #F5FFE9;
    position: relative;
    z-index: 222;
    overflow: hidden;  
    border-radius: 10px;

}

.rf-img {
    max-width: 550px;
    height: 100%;
    position: absolute;
    top: -40px;
    right: -100px;
}

.rf-img img {
    width: 100%;
    object-fit: cover;
    transition: 1s ease-in-out;
}

.rf-main a {
    text-decoration: none;
    color: black;
    position: relative;

}

.back {
    position: absolute;
    left: -95px;
    top: 120px;
    color: #aac18e !important;
    font-size: 90px;
    font-weight: 600;
    transform: rotate(270deg);
    opacity: 0.2;

}

.content {
    position: absolute;
    bottom: 20px;
    left: 73px;
    right:20px;
}

.content h3 {
    font-weight: 600;
    margin: 0;
    color: #8ac426 !important;


}

.content span {
    font-size: 12px;
    font-weight:100;
}

.references:hover .wiew p {
    display: block;
}

.references:hover img {
    transform: scale(0.9);
}



/* CSS */
.button-89 {
  --b: 3px;   /* border thickness */
  --s: .45em; /* size of the corner */
  --color: #373B44;
  
  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .6em;
  font-size: 16px;

  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
}

.button-89:hover,
.button-89:focus-visible{
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

.button-89:active {
  background: var(--color);
  color: #fff;
}




/* Blog */

.blog-row{
    row-gap:60px;
    justify-content: center !important;
}
.blog-sec {
    background-color: #F5FFE9;
    padding-bottom: 40px;
}

.blog-box-2 {
    position: relative;
    /* width: 306px; */
    height: 330px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.blog-box-2::after {
    position: absolute;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 30%, #00ffa7) 50%;
    content: "";
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.blog-box-2 img {
    object-fit: cover;
    background-size: contain;
    width: 100%;
    height: 330px;

}

.blog-titte {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: black;
    font-size: 20px;
    z-index: 23;
}

.blog-box-2 .blog-titte {
    background-color: #dddd1e00;
    text-decoration: none;
    color: black;
    border-radius: 10px;
    font-size: 15px !important;
    font-weight: bold;

}

.blog-titte h6 {

    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    line-height: 150%;
}

.blog-box-2 a {
    text-decoration: none;
}

.blog-box-2 a:hover {
    color: white;
}

.blog-head {
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
}

.blog-head h2 {
    font-size: 36px;
    font-weight: 600;
}

.blog-head p {
    font-size: 18px;
    color: #595959;
    line-height: 150%;
}

.blog-ser {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, #65AB0E 0%, #B3E042 100%);
    opacity: 0.8;
    filter: blur(35px); 
    position: absolute;
    border-radius: 50%;
    top: 0;
    animation: blog-ser 2s ease infinite;

}



@keyframes blog-ser {
    15% {
        box-shadow: 0 0 0 5px #65AB0E;
    }

    25% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 20px #B3E042;
    }

    50% {
        box-shadow: 0 0 0 10px #B3E042, 0 0 0 20px #B3E042;
    }
}

/* Partners */

.partners-box {
    max-width:245px !important;
    height: 100%;
    transition: 0.1s;
    display: flex;
    justify-content: center;
    align-items:center;
}

.partners-box  img {
    width:245px !important;
    height: 145px;
    object-fit: contain;
    filter: grayscale(100%);
    filter: grey;
    padding:20px;
}

.nth {
    border-right: none !important;
}

.nth-2 {
    border-bottom: none !important;
}

.partners-box:hover img {
    filter: none;
}

/* Call to action - Responsive*/

.feedback { 
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 105px 20px;
    background: #F5FFE9;
    border-radius: 32px;
    text-align: center;
    margin: 50px 0;
    color: black !important;
}

.backword {
    position: absolute;
    top: 37%;
    left: 0;
    font-weight: 900 !important;
    font-size: 60px !important;
    transform: rotate(270deg);
    opacity: 0.1;
    color: #aac18e;

}

.feedback h5 {
    font-size: 40px;
    font-weight: 600;
}

.feedback span {
    font-size: 17px;
    font-weight: 400;
}

.call-to-button {
    text-decoration: none;
    width: 200px;
}

.call-to-button button {
    padding: 0 !important;
    text-transform: uppercase !important;
}

/* Footer */

footer {
    background: linear-gradient(135deg, #edeef226, #fafafabf);
    padding: 30px 0;

}

.footer-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;

}

.footer-img img {
    width: 150px;

}

.footer-p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
}

.footer-nav,
.footer-img {
    padding-bottom: 30px;

}

.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    margin-bottom: 0;
}

.footer-nav ul li a {
    font-size: 14px;

    color: #595959 !important;
    text-decoration: none;text-transform: uppercase;
}

.footer-nav ul li a:hover {
    color: black;

}

.footer-2 ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

.footer-2 ul li {
    list-style-type: none;
}

.footer-2 ul li a {
    font-size: 16px;
    color: #595959 !important;
    text-decoration: none;

}

/* footer line */

.line {
    background: linear-gradient(135deg, #edeef226, #fafafabf);
}

.info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: #595959 !important;

}

.info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-li {
    display: flex;
    list-style-type: none;
    gap: 20px;


}

.social-li svg {
    width: 28px;
    ;
    height: 28px;
    display: block;
    object-fit: contain;
    background: linear-gradient(90deg, #65AB0E 0%, #65AB0E 100%);
    color: white;
    border-radius: 100%;


}


/* About Category - okay  - Responsive*/

.about-row {
    row-gap: 30px;
    column-gap: 10px;
    justify-content: center;
}

.about-col {
    background-color: #F5FFE9;
    padding: 20px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.about-col svg {
    width: 50px !important;
    height: 50px !important;
    opacity: 0.7;
}

.about-col span {
    font-size: 18px;
    line-height: 130%;
    color: #2B2B2B;
}

.information {
    padding: 0 150px;
    font-size: 18px;
    line-height: 130%;
    color: #2B2B2B;
    text-align: center;
}

.info-h6 {
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;

}

@media screen and (max-width:1200px) {

    .information {
        padding: 0px 10px !important;

    }

}

/* Services-in section - ok - Responsive */

.servcies-img {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;

}

.servcies-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;

}

@media screen and (max-width:1200px) {

    .services-information {
        padding: 0px 10px !important;

    }

}



/* Services-categories - Responsive */

.services-col {
    padding: 40px !important;
    max-width: 350px !important;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.services-col a {
    display: flex;
    gap: 30px;
    text-decoration: none;
    flex-direction: column;
}

.services-col a svg {
    opacity: 1 !important;
}

.services-col a:hover svg {
    color: black !important;
}

.services-col:hover {
    background: linear-gradient(90deg, #98e43b 0%, #b3e042 100%) !important;
}



/* Prices in - Okey  - Responsive*/
.price-in {
    background-color: white !important;
}


/* References - Responsive */
.ref-row {
    row-gap: 20px;
}

.new-div {
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    height: 500px;
}

.new-div::after {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #00ffa791);
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rf-content-1 {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 35px;
    left: 30px;
    right: 30px;
    gap: 10px;
    z-index: 222;

}

.rf-content-1 h3 {
    margin: 0 !important;
}

.rf-img-1 {
    max-width: 400px;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;

}

.rf-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Blog in section - okey - Responsive */
.blog-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.blog-us h6 {
    font-size: 42px;
    margin-top:50px;

}

.blog-us article {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #595959;
}

.blog-photo {
    max-width: 600px;
    max-height: 420;
    box-shadow: 0px 10px 26px 0px #c6c6c6;
}

.blog-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:568px) {
    .blog-us h6 {
        font-size: 32px;

    }
}



/* Contact us - okey */
.page_head {
    margin: 0 60px;
    background: #F5FFE9;
    padding: 132px 0;
}

.backword-2 {
    font-size: 100px !important;
    font-weight: 600 !important;
}

.contact .contact_info h2 {
    font-size: 60px;
    font-weight: 900;

}

.contact .contact_info p {
    color: #353535;
}

.contact .info_content {
    padding-top: 30px;
    font-size: 20px;
}

.done {
    padding: 4px 3px;
    background-color: #C7FFC7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #52B352;
    margin: 0 !important;
    font-size: 17px;
    text-align: center;
    width: 326px;
    display: none;
}

.form {
    background: #fff;
    padding: 30px;
}

input {
    height: 45px;
}

input,
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #bfc7ce;
    background: transparent;
    z-index: 222;
    position: relative;
    padding-top: 16px;
    padding-bottom: 2px;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

.input_wrap {
    position: relative;
}

.label_text {
    position: absolute;
    left: 0;
    top: 12px;
    transition: 0.2s linear;
    z-index: 1;
    color: #bfc7ce;
    font-size: 14px;
}

.focus_label {
    top: -5px;
    font-size: 12px;
    color: #ffca28;
}

.input_wrap .effect:focus~label,
.input_wrap .effect:active~label {
    top: -5px;
    font-size: 12px;
    color: #ffca28;
}

.effect::placeholder {
    opacity: 0;
}

.form .btn {
    font-size: 16px;
    background: #22262a;
    color: #fff;
    margin-top: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

.form .btn:hover {
    box-shadow: 5px 5px 15px rgb(0 0 0 / 30%);
    color: #fff;
}

#map {
    height: 400px;
    margin: 50px;
}

@media screen and (max-width:1200px) {
    #map {
        height: 400px;
    }


}

@media screen and (max-width:992px) {
    #map {
        height: 300px;
    }

    .contact-row {
        flex-direction: column;
    }

}

@media screen and (max-width:768px) {
    #map {
        height: 200px;
    }

    .page_head {
        margin: 0 0px;

    }

}

@media screen and (max-width:568px) {
    #map {
        height: 200px;
    }

    .contact .contact_info h2 {
        font-size: 40px;

    }

}

@media screen and (max-width:450px) {
    #map {
        height: 500px;
    }


}

@media screen and (max-width:400px) {
    #map {
        height: 200px;
    }


}



/* Magic Button - in */

.modal-dialog {
    max-width: 800px !important;

}

.modal-content {
    margin-top: 50px !important;
}

.modal-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    border-bottom: none !important;
}

.modal-header span {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #595959 !important;
    text-transform: none;
}

.modal-header h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    margin: 0;
}

.modal-header img {
    max-width: 200px;
}

.form-control {
    border: none !important;
    border-bottom: 1px solid black !important;
    height: 24px;
}

.modal .form-control:focus {
    border-color: none !important;
    /* Darker blue border on focus */
    box-shadow: none;

}

.col-form-label {
    font-weight: 600 !important;
}

.modal-body {
    padding: 25px 90px !important;
    z-index: 22222222;
}

.modal-footer {
    border: none !important;
    justify-content: center;
}

.btn-primary {
    width: 300px !important;
    height: 40px;
    background-color: #65AB0E;
    color: white;
    font-weight: 600;
    border: none !important;
    border-radius: 20px;
}

.btn-primary:hover {
    background-color: #64ab0ec7;
}

.btn-close {
    display: none;
}


/* Main page Responsiblity */

@media screen and (max-width:1200px) {
    .nav-right-category ul li a {
        font-size: 12px !important;
    }

    .magic-btn span {
        font-size: 12px;
    }

    /* Slider */

    .text-slider-h {
        font-size: 45px;
    }

    .text-slider-span {
        font-size: 16px;
    }

    /* Second slider  - okey*/

    /* Prices-okey */

    /* References-okey */
    .rf-img {
        max-width: 400px;
    }

    .content {
        right: 30px;
        left: 30px;
    }

    /* Blogs- okey */
    /* Partners - okey */
    /* Call to action - okey  */

    .feedback {
        padding: 70px 20px;
    }

    /* Footer - okey */


}

@media screen and (max-width:992px) {

    /* Slider */

    .text-slider-h {
        font-size: 35px;
    }

    .text-slider-span {
        font-size: 14px;
    }

    .photo-slider::before {
        width: 350px;
        height: 350px;
    }

    .photo-slider img {
        width: 350px;

    }

    /* Second slider  - okey*/

    /* Prices-okey */


    /* References-okey */



    /* Blogs- okey */
    /* Partners - okey */
    /* Call to action - okey  */
    .feedback {
        padding: 70px 20px;
    }

    /* Footer - okey */



}

@media screen and (max-width:768px) {

    /* Slider */

    .new-slide {
        flex-direction: column-reverse;
        margin-top: 60px;
        gap: 200px;
    }

    .photo-slider {
        width: 100%;
        justify-content: center;
    }

    .text-slider {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .text-slider-h {
        font-size: 30px;
    }

    .text-slider-span {
        font-size: 14px;
    }

    .photo-slider::before {
        width: 350px;
        height: 350px;
    }

    .photo-slider img {
        width: 350px;

    }

    /* Second slider  - okey*/
    .owl-carousel {
        margin-bottom: 40px;
    }

    /* Prices-okey */


    /* References-okey */

    .content h3 {
        font-size: 22px;
    }




    /* Blogs- okey */
    /* Partners - okey */
    /* Call to action - okey  */

    .feedback {
        padding: 70px 20px;
    }

    .feedback h5 {
        font-size: 21px;
    }

    /* Footer - okey */
    

    .footer-2 ul li {
        white-space: nowrap;
    }

    .footer-2 ul li a {
        font-size: 12px;
    }

    .footer-2 ul {
        justify-content: flex-start;
    }

    .footer-nav ul li a {
        font-size: 12px;
    }

    .info ul {
        justify-content: flex-start;
    }

}

@media screen and (max-width:568px) {

    /* Slider */

    .new-slide {
        flex-direction: column-reverse;
        margin-top: 60px;
        gap: 200px;
    }

    .photo-slider {
        width: 100%;
        justify-content: center;
    }

    .text-slider {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .background-color {
        top: 0;
        left: 0;
    }

    .text-slider-h {
        font-size: 22px;
    }

    .text-slider-span {
        font-size: 12px;
    }

    .photo-slider::before {
        width: 300px;
        height: 300px;
    }

    .photo-slider img {
        width: 350px;

    }

    /* Second slider  - okey*/
    .owl-carousel {
        margin-bottom: 20px;
    }

    .item h4 {
        font-size: 12px;
    }

    /* Prices-okey */


    /* References-okey */

    .rf-img {
        max-width: 340px;
    }

    .content h3 {
        font-size: 18px;
    }
    /* Footer - okey */

.footer-2 ul li {
    white-space: nowrap;
}

.footer-nav ul {
    flex-direction: column;
    gap: 6px;
}

.footer-section {
    flex-direction: column;
    justify-content: flex-start;
}

.footer-2 ul li a {
    font-size: 10px;
}

.footer-2 ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0px;
    margin-top: 20px;
}

.footer-nav ul li a {
    font-size: 12px;
}

.info ul {
    justify-content: flex-start;
}
/* Blogs- okey */
/* Partners - okey */
/* Call to action - okey  */

.feedback {
    padding: 70px 20px;
}

.feedback h5 {
    font-size: 21px;
}





.line {
    background-color: #F5FFE9;
}

.info {
    display: flex;
    flex-wrap: wrap;

}

.info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.info ul li span {
    font-size: 12px;
}

.social-li svg {
    width: 28px;
    ;
    height: 28px;
    display: block;
    object-fit: contain;
    background: linear-gradient(90deg, #65AB0E 0%, #65AB0E 100%);
    color: white;
    border-radius: 100%;


}

}
@media screen and (max-width:468px) {

    .back{
        font-size: 70px;
    }
    .content h3 {
        font-size: 15px;
    }
    .references {
        height: 400px;
    }
    .content {
        right: 0px;
        left: 20px;
    }

}






