@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
 
*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.custom-shape-divider-bottom-1682353254 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1682353254 svg {
    position: relative;
    display: block;
    width: calc(148% + 1.3px);
    height: 112px;
}

.custom-shape-divider-bottom-1682353254 .shape-fill {
    fill: #00FF00;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1682353254 svg {
        width: calc(110% + 1.3px);
        height: 75px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1682353254 svg {
        width: calc(159% + 1.3px);
        height: 50px;
    }
}

#preloader{
    background: #fff url(imgs/loading_count.gif) no-repeat center center;
    background-size: 25%;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
}

.navbar{
    width: 100%;
    height: auto;
    padding: 5px 20px;
    background: lime;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
}

.navbar img{
    max-width: 80px;
    max-height: 80px;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
}

.navbar img:hover{
    transform: scale(130%);
}

@keyframes fadeInUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
}

.navbar .all_links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navbar .all_links button{
    width: auto;
    height: auto;
    padding: 10px 15px;
    background: transparent;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 0 5px;
    outline: none;
    background: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 500;
    color: #00ff00;
    cursor: pointer;
    transition: .3s;

    animation: fadeInUp 0.7s ease-in-out forwards 0.1s;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.navbar .all_links button:hover{
    background: transparent;
    color: #fff;
    font-family: 600;
}

.navbar .links {
    display: flex;
}

.navbar .links a{
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.navbar .links .active{
    border-bottom: 4px solid #fff;
}

.navbar .links a:nth-child(1) {
    animation: fadeInUp 0.7s ease-in-out forwards 0.1s;
}

.navbar .links a:nth-child(2) {
    animation: fadeInUp 0.7s ease-in-out forwards 0.3s;
}

.navbar .links a:nth-child(3) {
    animation: fadeInUp 0.7s ease-in-out forwards 0.5s;
}

.navbar .links a:nth-child(4) {
    animation: fadeInUp 0.7s ease-in-out forwards 0.7s;
}

.navbar .links a:nth-child(5) {
    animation: fadeInUp 0.7s ease-in-out forwards 0.9s;
}  

.navbar .links a {
    position: relative;
}
  
.navbar .links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}
  
.navbar .links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
  
.navbar .links a:not(:hover)::after {
    transform-origin: right;
}

.navbar .links .nav_contact{
    display: none;
}
  
.fronty{
    width: 100%;
    height: 100vh;
    display: flex;
}

.fronty .contents{
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    overflow: hidden;
}

#contents1,
#contents2,
#contents3 {
  display: none;
}

.fronty .contents h1 {
    font-size: 40px;
    font-weight: 900;
    color: #00FF00;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    opacity: 0;
    position: relative;
    animation-name: slideIn;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0%;
        opacity: 1;
    }
}

.fronty .contents .text_exp{
    overflow: hidden;
    height: auto;
}

.fronty .contents p{
    font-size: 15px;
    letter-spacing: 2px;
    padding-left: 5px;
    line-height: 1.5;
    color: #000;
    border-left: 2px solid #00FF00;
    margin: 10px 0;
    opacity: 0;
    position: relative;
    animation-name: slideIn3;
    animation-duration: 2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes slideIn3 {
    from {
        bottom: -100%;
    }
    to {
        bottom: 0%;
        opacity: 1;
    }
}

.fronty .contents .btns {
    display: flex;
    width: 100%;
    height: auto;
}

.fronty .contents .btns button{
    width: 250px;
    height: auto;
    padding: 15px 0;
    border: 2px solid #00FF00;
    color: #000;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    margin-right: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    position: relative;
    animation-name: slideIn;
    animation-duration: 2s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.fronty .contents .btns button:nth-child(2){
    position: relative;
    animation-name: slideIn2;
    animation-duration: 4s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes slideIn2 {
    from {
        left: 200%;
    }
    to {
        left: 0%;
        opacity: 1;
    }
}

.fronty .contents .btns button:nth-child(1){
    background: #00FF00;
    color: #fff;
}

.fronty .contents .btns button:nth-child(1):hover{
    background: transparent;
    color: #000;
    box-shadow: 0 6px 8px rgba(0,0,0,0.4);
}

.fronty .contents .btns button:hover{
    background: #00FF00;
    color: #fff;
    box-shadow: 0 6px 8px rgba(0,0,0,0.4);
}

.social_icons{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.social_icons p{
    font-size: 15px;
    color: #000;
    letter-spacing: 1px;
    opacity: 0;
    position: relative;
    animation-name: slideIn2;
    animation-duration: 2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.social_icons span{
    height: 2px;
    width: 50px;
    background: #00FF00;
    margin: 0 10px;
    opacity: 0;
    position: relative;
    animation-name: slideIn2;
    animation-duration: 2s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

@keyframes slideIn4 {
    from {
        bottom: -100%;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

.social_icons .icons{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #00FF00;
    margin-left: 7px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: relative;
    animation-name: slideIn4;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.social_icons .icons:nth-child(3){
    animation-delay: 0.1s;
}

.social_icons .icons:nth-child(4){
    animation-delay: 0.3s;
}

.social_icons .icons:nth-child(5){
    animation-delay: 0.6s;
}

.social_icons .icons:nth-child(6){
    animation-delay: 0.9s;
}

.social_icons .icons:hover{
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.social_icons .icons a{
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    background: transparent;
}

.social_icons .icons a:hover{
    background: transparent;
    color: transparent;
}

.social_icons .icons i{
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.social_icons .icons:hover i{
    transform: scale(140%);
}

.fronty .images{
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fronty .images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    opacity: 0;
    animation-name: imagescale;
    animation-duration: 9s;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

@keyframes imagescale {
    from {
        transform: none;
    }
    to {
        transform: scale(200%);
        opacity: 1;
    }
}

.fronty .images::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #fff, transparent, transparent);
    z-index: 1;
  }

.call_panel{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: #000;
    opacity: .9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.call_panel form{
    width: 600px;
    height: auto;
    padding-bottom: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.call_panel form .heading{
    background: #00ff00;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
}

.call_panel form .heading p{
    cursor: pointer;
}

.call_panel form .inputs{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call_panel form .inputs p{
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.call_panel form .inputs .input_text{
    width: 400px;
    border: none;
    outline: none;
    border-bottom: 2px solid #00ff00;
    padding: 4px;
    font-size: 15px;
    color: #00FF00;
    margin: 10px 0 25px 0;
}

.call_panel form .inputs button{
    width: 250px;
    height: auto;
    padding: 10px;
    outline: none;
    background: transparent;
    border: 2px solid #00FF00;
    margin-bottom: 15px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: .3s;
}

.call_panel form .inputs button:hover{
    background: #00FF00;
    color: #fff;
    box-shadow: 0 8px 14px rgba(0,0,0,0.3);
}

.excellent{
    width: 100%;
    height: auto;
    background: linear-gradient(to right, transparent,#00FF00);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 25px;
}

.excellent p{
    font-size:40px;
    font-weight: 900;
    max-width: 400px;
    color: #00ff00;
    text-transform: uppercase;
    font-style: italic;
}

.excellent span{
    height: 2px;
    width: 20%;
    margin: 0 10px;
    background: #fff;
}

.excellent h6{
    font-size:20px;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    letter-spacing: 2px;
    padding: 10px 5px;
    border-left: 2px solid #fff;
}

.mission{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    margin: 6% 0;
}

.mission .items{
    width: 500px;
    height: auto;
    padding: 5px 3px;
    border-left: 3px solid #00FF00;
}

.mission .items h6{
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
}

.mission .items p{
    font-size: 14px;
    font-size: 200;
    line-height: 1.5;
}

.top_heading{
    width: 100%;
    height: auto;
    padding: 5px 20px;
    margin-top: 5%;
}

.top_heading h6{
    font-size: 20px;
    font-weight: 600;
    color: #00FF00;
    text-transform: uppercase;
}

.slide{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-top: 1%;
    position: relative;
}

.slide::-webkit-scrollbar{
    display: none;
}

.slide .items{
    min-width: 360px;
    height: 160px;
    background: linear-gradient(to right,#00FF00 ,#45c745);
    border-radius: 3px;
    margin: 6px 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.2s ease-in;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide .items:nth-child(even){
    background: linear-gradient(to right, #45c745,#00FF00);
}

.slide .items:hover{
    box-shadow: 0 8px 14px rgba(0,0,0,0.4);
}

.slide .items h1{
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.slide .items p{
    font-size: 14px;
    color: #fff;
    font-style: italic;
}

.faqs{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5% 0;
}

.faqs .items{
    width: 70%;
    height: 40px;
    background: linear-gradient(to left,#00FF00 ,#45c745);
    margin: 10px 0;
    border-radius: 3px;
    padding: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: .3s;
}

.faqs .items:nth-child(even){
    background: linear-gradient(to right,#00FF00 ,#45c745);
}

.faqs .items.open {
    height: auto;
}

.faqs .items:hover{
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.faqs .items .hori{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    border-bottom: 1px dotted #000;
    margin-bottom: 10px;
}

.faqs .items .hori h3{
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faqs .items .hori i{
    font-size: 15px;
    line-height: 3;
    letter-spacing: 1;
    color: #000;
}

.faqs .items p{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1;
    color: #000000;
}

.subscribe{
    width: 100%;
    height: auto;
    padding: 80px 10px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f1f1;
}

.subscribe form{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe form p{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    margin: 0 5px;
    width: 200px;
}

.subscribe form .mail_text{
    width: 400px;
    outline: none;
    border: 2px solid #00FF00;
    padding: 10px 5px;
    color: #000;
    letter-spacing: 1px;
    font-size: 14px;
    margin-left: 20px;
    background: transparent;
}

.subscribe form button{
    width: auto;
    height: auto;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #00FF00;
    background: #00FF00;
    color: #000;
    cursor: pointer;
}

.front_img{
    width: 100%;
    height: 55vh;
}

.front_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.contact{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 90px 20px;
    margin: 30px 0;
    overflow: hidden;
    
    background: linear-gradient(to left, #fff,#00ff00, #fff);
}

.contact .items:nth-child(1){
    width: 300px;
    height: 400px;
    margin-left: 20px;
}

.contact .items:nth-child(2){
    display: flex;
    flex-direction: column;
}

.contact .items:nth-child(2) a{
    font-size: 14px;
    color: #000;
    letter-spacing: 2px;
    line-height: 2;
    margin-top: 5px;
    text-decoration: none;
    padding: 5px;
    opacity: 0;
    position: relative;
    animation-name: slideIn;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
    transition: .3s;
}

.contact .items a:nth-child(1){
    animation-duration: 1s;
}

.contact .items a:nth-child(2){
    animation-duration: 2s;
}

.contact .items a:nth-child(3){
    animation-duration: 3s;
}

.contact .items a:hover{
    background: #00ff00;
    color: #fff;
    border-radius: 3px;
}

.contact .items h6{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #000;
    padding-bottom: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    position: relative;
    animation-name: slideIn2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
}

.contact .items:nth-child(2) h6{
    animation-duration: 3s;
}

.contact .items a:hover{
    background: #4cf74c;
}

.contact .items .contact_logo{
    width: 200px;
    height: 120px;
    margin-top: 10%;
    margin-left: 50px;
    
}

.contact .items .contact_logo img{
    width: 100%;
    height: 100%;
}

.contact .items form{
    width: 380px;
    opacity: 0;
    position: relative;
    animation-name: slideIn2;
    animation-duration: 2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.contact .items form .item{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px;
}

.contact .items form .item .input_text{
    width: 100%;
    outline: none;
    border: 1px solid #000;
    padding: 8px;
    font-size: 15px;
    background: transparent;
    color: #000;
    margin-bottom: 15px;
}

.contact .items form .item .text{
    width: 100%;
    height: 100px;
    outline: none;
    border: 1px solid #000;
    background: transparent;
    padding: 4px;
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
}

.contact .items form button{
    width: 200px;
    height: auto;
    background: transparent;
    border: 1px solid #000;
    outline: none;
    padding: 10px 0;
    font-size: 15px;
    margin-left: 5px;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.contact .items form button:hover{
    background: #00FF00;
    color: #fff;
}

.category{
    width: 100%;
    height: auto;
    margin: 10% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.category .items{
    width: 360px;
    height: 360px;
    border-radius: 5px;
    background: #00FF00;
    margin: 5px 10px;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 15px, rgba(0, 0, 0, 0.05) 0px 10px 15px;
}

@keyframes imagescale1 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(125%);
        opacity: 1;
    }
}

.category .items img{
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
    position: relative;
    opacity: 0;
    animation-name: imagescale1;
    animation-duration: 9s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.category .items p{
    position: absolute;
    font-size: 15px;
    background: #00ff00;
    color: #fff;
    padding: 10px 50px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category .items:hover{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 10px 15px;
}

.sub_text{
    font-size: 40px;
    font-weight: 500;
    color: #00ff00;
    margin: 10% 20px 20px 20px;
}

.call_btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding: 0 15%;
    margin-top: 4%;
}

.call_btn p{
    font-size: 20px;
    color: #000;
}

.related{
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.related .sliding{
    width: 70%;
    max-width: 70%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.related img{
    display: flex;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    animation-name: fade;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
}
  
@keyframes fade {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(130%);
    }
}
  

.call_btn button{
    width: 200px;
    height: auto;
    padding: 10px 20px;
    outline: none;
    border: 2px solid #00FF00;
    background: transparent;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.call_btn button:hover{
    background: #00FF00;
    color: #fff;
}

.sub_category{
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sub_category .items{
    width: 390px;
    height: 280px;
    overflow: hidden;
    margin: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.sub_category .items img{
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
    position: relative;
    cursor: pointer;
}

.sub_category .items img:hover{
    transform: scale(120%);
}

.services{
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 2% 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cover{
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 2% 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cover .items{
    width: 70%;
    height: auto;
    background: #ffffff;
    padding: 3% 30px;
    margin: 10px;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .items{
    width: 300px;
    height: 150px;
    background: linear-gradient(to left,#00ff00, #05d605);
    padding: 10px 5px;
    margin: 10px;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.services .items:nth-child(even){
    background: linear-gradient(to left, #05d605, #00ff00);
}

.services .items:hover{
    background: linear-gradient(to left, #00ff00, #05d605);
}

.services .items:nth-child(odd):hover{
    background: linear-gradient(to left, #05d605, #00ff00);
}

.services .items p{
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
}

.cover .items p{
    font-size: 14px;
    color: #000;
    text-transform: none;
    font-weight: 400;
}

.request{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: #000;
    opacity: .9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.request .items{
    width: 600px;
    height: auto;
    background: #00FF00;
    padding-bottom: 20px;
    border-radius: 5px;
    margin-top: 5%;
}

.request .items .heading{
    width: 100%;
    background: #05d605;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2%;
}

.request .items .heading p{
    font-size: 14px;
    color: #fff;
}

.request .items .heading i{
    width: 35px;
    height: 35px;
    font-size: 15px;
    padding: 10px;
    background: #fff;
    color: #00ff00;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
}

.request .items form{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.request .items form .input_text{
    width: 100%;
    padding: 8px 6px;
    border: 2px solid #fff;
    outline: none;
    font-size: 14px;
    color: #000;
    background: transparent;
    margin: 10px 0;
}

.request .items form button{
    width: 30%;
    height: auto;
    font-size: 13px;
    padding: 15px;
    font-weight: 500;
    border: 2px solid #fff;
    margin-top: 1%;
    cursor: pointer;
    transition: .3s;
}

.request .items form button:hover{
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.footer{
    width: 100%;
    height: auto;
    padding: 10px;
    background: rgb(7, 182, 7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2%;
}

.footer .devs{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 0 5%;
    flex-wrap: wrap;
}

.footer .devs .items{
    margin: 1px 0;
    display: flex;
    align-items: center;
}

.footer .devs h1{
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}


.footer .devs .items i{
    width: 40px;
    max-width: 40px;
    height: 40px;
    font-size: 20px;
    color: #00ff00;
    background: #fff;
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .devs .items a{
    font-size: 12px;
    color: #000;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.footer .devs .items a:hover{
    color: #fff;
}

.footer a{
    font-size: 12px;
    color: #000;
    text-decoration: none;
    letter-spacing: normal;
    font-weight: 600;
    margin: 5px;
    transition: .3s;
}

.footer a:hover{
    color: #fff;
}

.footer a i{
    font-size: 13px;
}

.menu{
    display: none;
}

.location{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.location iframe{
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px){

    .navbar .links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background: #00FF00;
        opacity: .9;
        height: 100vh;
        width: 300px;
        align-items: start;
        padding-top: 40px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.8);
        transition: .3s;
    }

    .navbar .links a{
        font-size: 14px;
        margin: 0 10px;
        margin-bottom: 100px;
        padding-left: 5px;
        line-height: 2;
    }

    .navbar .links .active{
        border-left: 2px solid #fff;
        border-bottom: none;
        color: #eeecec;
        font-weight: 600;
    }

    .menu{
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        background: #fff;
        border-radius: 50px;
        z-index: 99;
        position: absolute;
        margin-top: 0;
        right: 2%;
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
        cursor: pointer;
    }

    .menu span{
        width: 17px;
        height: 2px;
        background: #00ff00;
        margin: 2px 6px;
        transition: .3s;
    }

    .menu span:nth-child(2){
        width: 13px;
    }

    .navbar .links .nav_contact{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        border-top: 1px dotted #000;
        padding-top: 15px;
    }
    
    .navbar .links .nav_contact .items{
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        padding-left: 10px;
        margin-bottom: 4px;
    }

    .navbar .links .nav_contact .items i{
        font-size: 12px;
        color: #00ff00;
        width: 10px;
        height: 10px;
        padding: 15px;
        background: #f5f1f1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .links .nav_contact .items a{
        font-size: 12px;
        color: #000;
        letter-spacing: 0;
        text-transform: none;
        line-height: 2;
        margin: 0;
    }

    .fronty .contents{
        width: 60%;
        padding-left: 10px;
    }

    .fronty .images{
        width: 40%;
    }

    .fronty .contents h1 {
        font-size: 30px;
        letter-spacing: 0;
        line-height: 1;
    }

    .fronty .contents p{
        font-size: 11px;
        letter-spacing: 0;
        padding-left: 3px;
        line-height: normal;
        margin: 2px 0;
    }

    .fronty .contents .btns button{
        width: auto;
        height: auto;
        padding: 6px 3px;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0;
        margin-right: 5px;
        margin-top: 5px;
    }

    .social_icons p{
        font-size: 11px;
        color: #000;
        letter-spacing: normal;
    }

    .social_icons span{
        width: 20px;
        margin: 0 2px;
    }

    .social_icons .icons{
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }

    .social_icons .icons i{
        font-size: 16px;
    }

    .social_icons .icons:hover i{
        transform: scale(110%);
    }

    .excellent p{
        font-size: 15px;
        font-weight: 900;
        max-width: 300px;
    }
    
    .excellent span{
        width: 8%;
        margin: 0 5px;
    }
    
    .excellent h6{
        font-size: 14px;
        letter-spacing: 1px;
    }

    .mission .items h6{
        font-size: 14px;
    }
    
    .mission .items p{
        font-size: 11px;
        line-height: 1;
    }

    .slide .items{
        min-width: 190px;
        max-width: 190px;
        height: 120px;
        margin: 2px;
    }

    .slide .items h1{
        font-size: 18px;
    }
    
    .slide .items p{
        font-size: 12px;
    }

    .faqs .items{
        width: 80%;
        margin: 2px 0;
        padding: 8px;
    }

    .faqs .items .hori h3{
        font-size: 12px;
    }
    
    .faqs .items .hori i{
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: normal;
    }
    
    .faqs .items p{
        font-size: 12px;
        line-height: 3;
        letter-spacing: 1;
    }

    .contact{
        padding: 0 20px;
        margin: 30px 0;
        flex-direction: column;
        background: linear-gradient(to left,#00ff00, #fff);
    }

    .contact .items{
        width: 80%;
        margin: 10px 0;
    }

    .contact .items:nth-child(1){
        width: 80%;
        height: auto;
        margin-left: 1px;
    }

    .contact .items:nth-child(2) a{
        font-size: 11px;
        letter-spacing: 1px;
        line-height: 2;
        padding: 5px;
    }

    .contact .items h6{
        margin-bottom: 0;
    }

    .subscribe form p{
        font-size: 13px;
        width: auto;
    }

    .contact .items form{
        width: 100%;
    }

    .contact .items .contact_logo{
        position: absolute;
        top: 60%;
        right: 3%;
    }

    .contact .items form button{
        width: 98%;
        font-size: 13px;
        margin: 0 5px;
        letter-spacing: 1px;
    }

    .subscribe form .mail_text{
        width: 200px;
        padding: 10px 5px;
        color: #000;
        letter-spacing: 1px;
        font-size: 11px;
        margin-left: 10px;
    }
    
    .subscribe form button{
        padding: 10px 10px;
        outline: none;
        font-size: 12px;
        letter-spacing: normal;
    }

    .services .items{
        width: 170px;
        height: auto;
        background: linear-gradient(to left,#00ff00, #05d605);
        padding: 10px;
        margin: 5px;
    }

    .services .items p{
        font-size: 14px;
        color: #fff;
        text-transform: capitalize;
        font-weight: 500;
    }

    .category{
        margin: 16% 0;
    }

    .sub_text{
        font-size: 18px;
        margin: 5% 10px 10px 10px;
    }

    .sub_category .items{
        width: 320px;
        height: 280px;
        margin: 3px;
    }

    .category .items{
        width: 310px;
        height: 250px;
        border-radius: 5px;
        background: #00FF00;
        margin: 5px 10px;
    }

    .cover{
        padding: 5px 0;
        margin: 0;
    }

    .cover .items{
        width: 95%;
        padding: 1% 10px;
    }

    .cover .items p{
        font-size: 11px;
        line-height: normal;
    }

    .call_btn{
        padding: 0 3%;
        margin-top: 0;
    }
    
    .call_btn p{
        font-size: 13px;
    }

    .call_btn button{
        padding: 8px;
        font-size: 12px;
        color: #000;
        font-weight: 400;
    }

    .related{
        height: auto;
        margin-bottom: 10px;
    }

    .related .sliding{
        width: 95%;
        max-width: 95%;
    }

    .navbar .all_links{
        margin-right: 35px;
    }

    .navbar .all_links button{
        padding: 5px 7px;
        font-size: 10px;
    }
    
    .footer .devs{
        margin: 0;
    }
    
    .footer .devs .items{
        margin: 1px 0;
    }
    
    .footer .devs .items i{
        width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 3px;
    }

    .footer .devs .items a{
        font-size: 10px;
        padding: 2px;
        line-height: normal;
        margin: 0;
    }
    
    .footer a{
        font-size: 10px;
        letter-spacing: normal;
    }
    
    .footer a i{
        font-size: 10px;
    }

}

@media (max-width: 425px){

    .menu{
        margin-top: 0.1%;
    }

    .navbar .links {
        width: 270px;
    }

    .navbar{
        padding-left: 8px;
    }

    .navbar img{
        max-width: 60px;
        max-height: 60px;

    }

    .navbar .links a{
        font-size: 11px;
        padding-left: 5px;
    }

    .navbar .links .nav_contact .items i{
        font-size: 10px;
        width: 2px;
        height: 10px;
        padding: 11px;
    }

    .navbar .links .nav_contact .items a{
        font-size: 10px;
    }

    .fronty{
        flex-direction: column-reverse;
        margin-bottom: 10px;
    }

    .fronty .contents{
        width: 100%;
        height: 36vh;
    }

    .fronty .images{
        width: 100%;
        height: 68vh;
    }

    .fronty .images::before {
        background: linear-gradient(to top, #fff, transparent, transparent);
    }

    .fronty .contents h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .fronty .contents p{
        font-size: 10px;
        line-height: 1.2;
    }

    .social_icons{
        margin-top: 10px;
    }

    .social_icons .icons{
        width: 40px;
        height: 40px;
    }

    .social_icons .icons i{
        font-size: 14px;
    }

    .social_icons p{
        font-size: 9px;
    }

    .excellent{
        padding: 20px 10px;
    }

    .excellent p{
        font-size: 12px;
        max-width: 200px;
    }
    
    .excellent span{
        display: none;
        width: 10%;
        margin: 0 5px;
    }
    
    .excellent h6{
        font-size: 10px;
        letter-spacing: normal;
        margin-left: 15px;
    }

    .mission{
        padding: 10px 5px;
        margin-top: 10px;
        flex-direction: column;
    }
    
    .mission .items{
        width: 99%;
        height: auto;
        margin: 4px 0;
        padding: 5px 3px;
        border-left: 2px solid #00FF00;
    }
    
    .mission .items h6{
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .mission .items p{
        font-size: 10px;
        line-height: 1;
    }

    .top_heading{
        padding: 0 2px;
        margin-top: 2%;
    }
    
    .top_heading h6{
        font-size: 14px;
        font-weight: 500;
    }

    .slide{
        padding: 1px;
    }

    .slide .items{
        min-width: 155px;
        max-width: 155px;
        height: 100px;
    }

    .slide .items h1{
        font-size: 13px;
    }

    .slide .items p{
        font-size: 9px;
    }

    .contact .items{
        width: 100%;
        margin: 10px 0;
    }

    .contact .items:nth-child(1){
        width: 80%;
        padding-left: 20px;
    }

    .contact .items form button{
        width: 87%;
        font-size: 12px;
    }

    .subscribe form p{
        font-size: 12px;
        width: auto;
    }

    .contact{
        padding: 20px 0;
    }

    .contact .items form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact .items form .item{
        width: 90%;
    }

    .contact .items h6{
        margin-bottom: 0;
        margin-left: 19px;
    }

    .contact .items form{
        width: 100%;
    }

    .contact .items .contact_logo{
        display: none;
    }

    .contact .items form .item .input_text{
        padding: 4px;
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .contact .items form .items .text{
        font-size: 12px;
        margin-bottom: 5px;
    }

    .contact .items{
        width: 100%;
        margin: 10px 0;
    }

    .contact .items:nth-child(1){
        width: 100%;
    }

    .contact .items:nth-child(2) a{
        letter-spacing: 1px;
        line-height: normal;
    }

    .faqs .items{
        width: 99%;
        height: 30px;
    }

    .faqs .items .hori h3{
        font-size: 11px;
        margin-bottom: 7px;
        letter-spacing: normal;
    }
    
    .faqs .items .hori p{
        font-size: 12px;
        margin-bottom: 7px;
    }
    
    .faqs .items p{
        font-size: 9px;
        line-height: 1;
        letter-spacing: normal;
    }

    .category{
        margin: 25% 0 9% 0;
    }

    .category .items{
        width: 95%;
        height: 300px;
        margin: 4px 0;
    }

    .category .items p{
        font-size: 13px;
        padding: 10px 40px;
        letter-spacing: 1px;
    }

    .sub_text{
        font-size: 13px;
        letter-spacing: 0;
        margin: 24% 0 20px 5px;
    }

    .sub_category .items{
        width: 98%;
        height: 300px;
        margin: 3px;
    }

    .subscribe{
        padding: 20px 0;
    }
    
    .subscribe form{
        flex-direction: column;
    }

    .subscribe form p{
        font-size: 12px;
        margin: 4px 0;
        width: auto;
    }
    
    .subscribe form .mail_text{
        width: 300px;
        padding: 5px 3px;
        font-size: 12px;
        margin: 10px 0;
    }
    
    .subscribe form button{
        padding: 6px 15px;
        font-size: 11px;
        letter-spacing: 1px;
        font-weight: 400;
        border: 1px solid #00FF00;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .services .items{
        width: 100px;
        height: auto;
        background: linear-gradient(to left,#00ff00, #05d605);
        padding: 10px 0;
        margin: 2px;
    }

    .services .items p{
        font-size: 11px;
        font-weight: 400;
    }

    .footer{
        flex-direction: column;
        padding: 4px 0;
    }

    .footer .devs{
        width: 90%;
        margin: 1%;
    }
    
    .footer a{
        font-size: 9px;
    }

    .footer a i{
        font-size: 9px;
    }

    .location{
        height: 280px;
        padding: 0 5px;
        margin-bottom: 7%;
    }

    .request .items{
        width: 95%;
        padding-bottom: 15px;
        border-radius: 5px;
    }

    .request .items form .input_text{
        padding: 4px 4px;
        margin: 6px 0;
    }

    .request .items form button{
        width: 40%;
        font-size: 11px;
        padding: 7px 10px;
        font-weight: 400;
    }
}