@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

:root{
    --green:#20b2aa;
    --black:#444;
    --light-color:#777;
    --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
    --text-shadow:.4rem .4rem 0 rgba(0, 0, 0, .2);
    --border:.2rem solid var(--green);
}

*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-transform: capitalize;
    transition: all .2s ease-out;
    text-decoration: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: var(--black);
}

section{
    padding:2rem 9%;
}

section:nth-child(even){
    background: #f5f5f5;
}
.text-center{
    text-align: center !important;
}

.bg-white{
    background-color: white !important;
}
.text-clr{
  color: var(--light-color) !important;
}
.text-web{
  color: var(--green) !important;
}
.pdd-top-5{
    padding-top: 3%;
}

.heading{
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color:var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
}

.heading span{
    text-transform: uppercase;
    color:var(--green);
}

.heading-title {
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 3rem;
    letter-spacing: .1rem;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border:var(--border);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    font-size: 1.7rem;
    background: var(--green);
    color: #fff;
}

.btn:hover{
    background: #fff;
    color: var(--green);
}
.heading-button{
    text-align: center;
    padding-bottom: 2rem;
    text-transform: uppercase;
    color:var(--black);
    font-size: 8rem;
}
.heading-button a {
    padding: 1rem 9rem;
    font-size: 1.6rem;
    font-weight: bold;
}


.header{
    padding: 1rem 9%;
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.header .logo img{
    width: 250px;
    height: 60px;
    color: var(--black);
}

.header .logo img{
    color: var(--green);
}

.header .navbar a{
    font-size: 2.1rem;
    color: #000000;
}

.header .navbar a:hover{
    color: #000000;
}

/*---------------new--------*/
.dropdown {
    float: left;
    overflow: hidden;
    padding-left: 2rem;
  }

  .dropdown .dropbtn {
    font-size: 2.1rem;
    border: none;
    outline: none;
    color: #000000;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }

  .navbar a:hover, .dropdown:hover .dropbtn {
    color: #000000;
  }

  .dropdown-content {
    margin: .1rem;
    display: none;
    position: absolute;
    background-color: var(--green);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

  }

  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-content a:hover {
    background-color: #ddd;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
/*--------------end---------*/


#menu-btn{
    font-size: 2.5rem;
    border-radius: .5rem;
    background: #eee;
    color:var(--green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
}
/* Header Video */
.bg-video-wrap {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(45deg, rgba(0,0,0,.3) 50%, rgba(0,0,0,.7) 50%);
  }
  video {
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
  }
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 2;
  }
  .info-section{
    width: 100%;
    height: auto;
  }
  .info-section .Videotitle {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    margin-top: 31%;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    height: 50px;
  }
  .info-section .VideoLogo {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    font-size: 54px;
    width: 50%;
  }
.home .bg-video-wrap .info-section .btn {
    z-index: 3;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 200px;
    height: 50px;
    margin-top: 34%;
    font-weight: bold;
    padding: 1rem;
}




/* Header Vedio End */

.home{
    margin: 0;
    padding: 0;
}

.home .image{
    flex:1 1 45rem;
}

.home .image img{
    width: 100%;
}

.home .content{
    flex:1 1 45rem;
}

.home .content h3{
    font-size: 4.5rem;
    color:var(--black);
    line-height: 1.8;
    text-shadow: var(--text-shadow);
}

.home .content p{
    font-size: 1.7rem;
    color:var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
}

/* Slider */

.services .slide{
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    user-select: none;
 }

 .services .slide img{
    height: 29rem;
    width: 100%;
    object-fit: cover;
    border-radius: .8rem .8rem .8rem .8rem;
 }

.swiper-pagination-bullet{
    background-color: var(--light-color);
 }

 .swiper-pagination-bullet-active{
    background-color: var(--green);
 }
 /* Slider end */

 /* service */

 .services .row{
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap:5rem !important;
}
 .services .row .image{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:2.5rem;
    flex:1 1 57rem;
}

.services .row .image .box{
    background:#fff;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:var(--border);
    padding: .5rem;
}
.services .row .image .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.services .row .image .box:hover img {
    transform: scale(1.1);
}

.services .row .image .box i{
    color: var(--green);
    font-size: 5rem;
    padding-bottom: .5rem;
}

.services .row .image .box h3{
    color: var(--black);
    font-size: 2.5rem;
    padding:1rem 0;
}

.services .row .image .box p{
    color: var(--light-color);
    font-size: 1.4rem;
    line-height: 2;
}

.services .row .content{
    flex:1 1 45rem;
}

.services .row .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
}

.services .row .content p{
    color: var(--light-color);
    padding:1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
}


.services .row .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap:2rem;
}


.services .row .box-container .box a{
    display: block;
    font-size: 1.5rem;
    color:var(--light-color);
    padding: 1rem 0;
}

.services .row .box-container .box a i{
    padding-right: .5rem;
    color:var(--green);
}

.services .row .box-container .box a:hover i{
    padding-right:2rem;
}

/* Service End */

/* Review section Start */
.review .swiper .swiper-wrapper .swiper-slide .box{
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding:2.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.review .swiper .swiper-wrapper .swiper-slide .box img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border:.5rem solid #fff;
}

.review .swiper .swiper-wrapper .swiper-slide .box h3{
    color:#fff;
    font-size: 2.2rem;
    padding:.5rem 0;
}

.review .swiper .swiper-wrapper .swiper-slide .box .stars i{
    color:#fff;
    font-size: 1.5rem;
}

.review .swiper .swiper-wrapper .swiper-slide .box .text{
    color:var(--light-color);
    line-height: 1.8;
    font-size: 1.6rem;
    padding-top: 4rem;
}

.review .swiper .swiper-wrapper .swiper-slide .box::before{
    content: '';
    position: absolute;
    top:-4rem; left: 50%;
    transform:translateX(-50%);
    background:var(--green);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 25rem;
    width: 120%;
    z-index: -1;
}
/* Review Section End */

/* Counter Section */
.count .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
    align-items: flex-start;
 }

 .count .box-container .box{
    background-color: #00edff1f;;
    border-radius: .5rem;
    padding: 10rem 2rem 10rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2.5rem;
 }

 .count .box-container .box i{
    font-size: 5rem;
    color:var(--green);
 }

 .count .box-container .box .content h3{
    font-size: 3rem;
    color:var(--white);
    margin-bottom: .5rem;
 }

 .count .box-container .box .content p{
    font-size: 1.6rem;
    color:var(--light-white);
 }
/* Counter section End */



/* We Are so proude of Section */
.count .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
    align-items: flex-start;
 }

.count .box-container .box1{
    background-color: #ffffff;;
    border-radius: .5rem;
    padding: 4rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2.5rem;
}

 .count .box-container .box1 i{
    font-size: 5rem;
    color:var(--green);
 }

 .count .box-container .box1 .content h3{
    font-size: 3rem;
    color:var(--white);
    margin-bottom: .5rem;
 }

 .count .box-container .box1 .content p{
    font-size: 1.6rem;
    color:var(--light-white);
 }
/* We Are so proude of section End */

/* Contact Start */
.contact .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
}

.contact .box-container .box{
    text-align: center;
    background:#fff;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
    padding:4rem 2rem 4rem 2rem;
}

.contact .box-container .box a{
    height: 5rem;
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    color:var(--green);
    border-radius: .5rem;
    border:var(--border);
    margin:.3rem;
    margin-bottom: 4rem;
}

.contact .box-container .box h3{
    color:var(--black);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.contact .box-container .box span{
    color:var(--green);
    font-size: 1.5rem;
}


.contact .box-container .box a:hover{
    background:var(--green);
    color:#fff;
    box-shadow: var(--box-shadow);
}
.contact .box-container .box:hover{

    background:#00ffea1f;
    color:#fff;
    box-shadow: var(--box-shadow);
}

.contact .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
}

.contact .row .image{
    flex:1 1 45rem;
}

.contact .row .image img{
    width: 70%;
    padding: 5rem;
}

.contact .row form{
    flex:1 1 45rem;
    background: #fff;
    border:var(--border);
    box-shadow: inset 0rem 0rem 6rem 18px rgb(255 1 41 / 8%);
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
}

.contact .row form h3{
    color:var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;
}

.contact .row form .box{
    width: 100%;
    margin:.7rem 0;
    border-radius: .5rem;
    border:var(--border);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
}

.contact .row form .btn{
    padding:1rem 4rem;
}
/* Contact End */


/* Footer start */

.footer{
    background-color: var(--green) !important;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap:4rem;
}
.footer .box-container .box img{
    background-color:white;
    padding: 1rem;
    border-radius: 1rem;
}
.footer .box-container .box h3{
    font-size: 2.5rem;
    color:white;
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    color:white;
    padding: 0.8rem 0;
}

.footer .box-container .box a i{
    /* padding-right: .5rem; */
    color:var(--green);
}

.footer .box-container .box a:hover i{
    padding-right:2rem;
}

/* new add */
.widget {
    margin-bottom: -15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.text-white {
    color: #fff!important;
}

.text-left{
    text-align: left;
}
.text-right{
text-align: right;
}
.socialpad {
    padding-left: 10%;
    padding-right: 10%;
}
.footer .box-container .box .widget ul {
    list-style: none;
    margin-top: 5px;
}
.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}
.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
ul[class*="list-"] {
    font-size: 15px;
}

div .padd {
    margin-bottom: 10px;
}
.site-footer.style1 .widget_subscribe .input-group .input-group-addon {
    padding: 0;
    border: 0;
    background: transparent;
}

.site-button.circle {
    width: 44px;
    height: 44px;
    padding: 7px 0 0 0;
    border-radius: 40px;
    line-height: 30px;
}
.circle i {
    font-size: 3rem;
}
.site-button.facebook, .site-button.youtube, .site-button.linkedin, .site-button.instagram, .site-button.pinterest, .site-button.twitter {
    font-size: 30px;
}
.site-button.facebook {
    background-color: #fff;
    color: #10218b;
    font-size: 28px;
}
.site-button.linkedin {
    background-color: #fff;
    color: #10218b;
    font-size: 28px;
}
.site-button.instagram,.pinterest,.twitter,.youtube {
    background-color: #fff;
    color: #10218b;
    font-size: 28px;
}
.newsletter{
color: white;
}

.bgColor {
    color: var(--green) !important;
    font-size: 2rem;
}

.footer .credit{
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    color:var(--light-color);
    border-top: .1rem solid rgba(0, 0, 0, .1);
    color: white;
}

.footer .credit span{
    color:var(--green);
}

.underfooter h6 {
    font-size: 13px;
    color: white;
}

.right-credit {
    margin-top: -1%;
}
/* end New */

/*----------------------------*/
/*--------page Design---------*/
/*-----------------------------*/

.page-home{
    background-color: #fff !important;
    padding-top: 120px;
}
.page-home .heading
{
    text-align: center;
    padding-bottom: 0;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
}
.page-home .heading span {
    text-transform: uppercase;
    color: white;
}

.page .row{
    display: flex;
    gap: 2rem;
}
.gate-details .row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
}
.page .row .image{
    height: 600px;
}

.page .row .image .box{
    background:#fff;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:var(--border);
    padding: 3.5rem;
    margin: .5rem;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .row .image .box img{
    height: 100%;
    /* width: 100%; */
    object-fit: cover;
}
.page .row .image .box:hover img {
    transform: scale(1.1);
}

.page .row .image .box i{
    color: var(--green);
    font-size: 5rem;
    padding-bottom: .5rem;
}

.page .row .image .box h3{
    color: var(--black);
    font-size: 2.5rem;
    padding:1rem 0;
}

.page .row .image .box p{
    color: var(--light-color);
    font-size: 1.4rem;
    line-height: 2;
}

.page .row .content{
    flex:1 1 45rem;
}

.page .row .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
}
.page .row .content h3  a{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
}

.page .row .content p{
    color: var(--light-color);
    padding:1rem 0;
    font-size: 2.1rem;
    line-height: 1.8;
}

.page .row .content .varietie p{
    color: var(--light-color);
    padding:.3rem 0;
    font-size: 1.5rem;
}


.page .row .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap:2rem;
}

.page .gate-1{
    margin-top: 2rem;
}

.page .row .box-container .box a{
    display: block;
    font-size: 2.1rem;
    color:var(--light-color);
    padding: 1rem 0;
}

.page .row .box-container .box a i{
    padding-right: .5rem;
    color:var(--green);
}

.page .row .box-container .box a:hover i{
    padding-right:2rem;
}

.page .gate-1 h3{
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

/* team */
.team .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
    margin: 10rem;
}

.team .box-container .box{
    text-align: center;
    background:#fff;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: inset 0rem 0rem 6rem 18px rgb(255 1 41 / 10%);
    padding:2rem;
}

.team .box-container .box img{
    height: 32rem;
    border:var(--border);
    border-radius: .5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.team .box-container .box p{
color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
}

.team .box-container .box h3{
    color:var(--black);
    font-size: 2.5rem;
}

.team .box-container .box span{
    color:var(--green);
    font-size: 1.5rem;
}

.team .box-container .box .share{
    padding-top: 2rem;
}

.team .box-container .box .share a{
    height: 5rem;
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    color:var(--green);
    border-radius: .5rem;
    border:var(--border);
    margin:.3rem;
}

.team .box-container .box .share a:hover{
    background:var(--green);
    color:#fff;
    box-shadow: var(--box-shadow);
}


/*--------------Application Form------------------*/
.application-heading {
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 3rem;
    /* letter-spacing: .4rem; */
}
.page .a-row{
    flex-wrap: wrap;
    gap:10rem;
}
.testbox {
    display: flex;
    height: inherit;
    padding: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
form {
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    background: #20b2aa14;
    box-shadow: 0 0 25px 0 #20b2aa;
}
.banner {
    position: relative;
    height: 210px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #00fff1;
}
.banner::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
}
.item p, .city-item p{
    font-size: 1.6rem;
    padding: 0 1.5rem 1.5rem 0;
}
input, select, textarea {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
input {
    width: calc(100% - 10px);
    padding: 5px;
}
input[type="date"] {
    padding: 4px 5px;
}
select {
    width: 100%;
    padding: 7px 0;
    background: transparent;
}
textarea {
    width: calc(100% - 12px);
    padding: 5px;
}
.item:hover p, .item:hover i, .question:hover p, .question label:hover, input:hover::placeholder {
    color: var(--green);
}
.item input:hover, .item select:hover, .item textarea:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 6px 0 var(--green);
    color: var(--green);
}
.item {
    position: relative;
    margin: 10px 0;
}
input[type="date"]::-webkit-inner-spin-button {
    display: none;
}
.item i, input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    font-size: 18px;
    color: #a9a9a9;
}
.item i {
    right: 2%;
    top: 47%;
    z-index: 1;
}
.city-item select {
    width: calc(50% - 8px);
}
[type="date"]::-webkit-calendar-picker-indicator {
    right: 1%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
input[type=radio], input[type=checkbox]  {
    display: none;
}
label.radio {
    position: relative;
    display: inline-block;
    margin: 5px 20px 15px 0;
    cursor: pointer;
}
.question span {
    margin-left: 30px;
}
label.radio:before {
    content: "";
    position: absolute;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid #ccc;
}
input[type=radio]:checked + label:before, label.radio:hover:before {
    border: 2px solid var(--green);
}
label.radio:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 8px;
    height: 4px;
    border: 3px solid var(--green);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
}
input[type=radio]:checked + label:after {
    opacity: 1;
}
.btn-block {
    margin-top: 10px;
    text-align: center;
}
.btn-block button {
    width: 170px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: var(--green);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.btn-block button:hover {
    color: var(--green);
    background: white;
}
@media (min-width: 568px) {
    .name-item, .city-item {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .city-item input {
        width: calc(50% - 8px);
    }
    .city-item select {
        width: calc(50% - 8px);
    }
}
/*-------------end-------------*/

/*--------------vacancy----------*/
@media (max-width: 1080px) {
    .vacancy .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(39rem, -1fr));
        gap:2rem;
    }
}
@media (min-width: 1280px) {
    .vacancy .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(51rem, 2fr));
        gap:2rem;
    }
}
.vacancy .box-container .box{
    background:#fff;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
    padding:4rem 2rem 4rem 2rem;
}

.vacancy .box-container .box a{
    height: 3rem;
    width: 3rem;
    line-height: 3.5rem;
    font-size: 2rem;
    color: var(--green);
    margin: 0.1rem;
    margin-bottom: 0rem;
}



.vacancy .box-container .box h3{
    color:var(--black);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.vacancy .box-container .box span{
    color:var(--green);
    font-size: 1.5rem;
}


.vacancy .box-container .box a:hover{
    background:var(--green);
    color:#fff;
    box-shadow: var(--box-shadow);
}
.vacancy .box-container .box:hover{

    background:#00ffea1f;
    color:#fff;
    box-shadow: var(--box-shadow);
}

.vacancy .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
}

.vacancy .row .image{
    flex:1 1 45rem;
}

.vacancy .row .image img{
    width: 70%;
    padding: 5rem;
}

.vacancy .row form{
    flex:1 1 45rem;
    background: #fff;
    border:var(--border);
    box-shadow: inset 0rem 0rem 6rem 18px rgb(255 1 41 / 8%);
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
}

.vacancy .row form h3{
    color:var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;
}

.vacancy .row form .box{
    width: 100%;
    margin:.7rem 0;
    border-radius: .5rem;
    border:var(--border);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
}

 .vacancy .box-container .box .btn{

        display: inline-block;
        margin-top: 1rem;
        padding: .5rem;
        padding-left: 1rem;
        border:none;
        box-shadow: none;
        cursor: pointer;
        font-size: 1.7rem;
        color: var(--green);
        background: transparent;
        margin-left: 95%;
}
/*---------------End-----------*/
/*--------------job Details--------*/
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    font-size:1.6rem;
  }

 .job-contain-title{
        padding-bottom: 1rem;
        margin-top: 2rem;
        text-shadow: var(--text-shadow);
        text-transform: uppercase;
        color: var(--black);
        font-size: 2rem;
        letter-spacing: .1rem;
 }

/*----------------------------*/
/*--------End page Design------*/
/*-----------------------------*/

/* media queries  */

@media (max-width:1440px){

    .page .row {
        gap: 2rem;
    }
    .page .row .content p, .page .row .box-container .box a {
        font-size: 1.6rem;
    }
    .contact .row .image img {
        width: 100%;
    }
    .count .box-container {
        gap: 0.5rem;
    }
    .count .box-container .box {
        padding: 10rem 1rem 10rem 1rem;
        gap: 1.5rem;
    }
    .count .box-container .box .content p {
        font-size: 1.2rem;
    }

}

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top:115%; right: 2rem;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        width: 30rem;
        border: var(--border);
        background: var(--green);
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: none;
    }

    .header .navbar.active{
        transform: scale(1);
        opacity: 1;
        transition: .2s ease-out;
    }

    .header .navbar a{
        font-size: 2rem;
        display: block;
        margin: 0.5rem;

    }
    .dropdown {
        font-size: 2rem;
        margin: 1.6rem;
        padding-left: 3rem;
        text-align: center;

      }
      .text-clr{
        color: white !important;
      }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }
    .info-section .VideoLogo {
        width: 70%;
    }
    .info-section .Videotitle {
        margin-top: 67%;
        font-size: 1.6rem;
    }
    .home .bg-video-wrap .info-section  .btn {
        width: 46%;
        height: 45px;
        margin-top: 73%;
        padding: 1.5rem;
    }
    .bg-video-wrap {
        width: 100%;
        height: 52vh;
    }
    video {
        min-width: 10%;
        min-height: 52vh;
        z-index: 1;
    }

    .text-left, .text-right {
        text-align: center !important;
    }
    .circle i {
        font-size: 4.0rem;
    }
    .underfooter h6 {
        font-size: 10px;
    }

    .banner {
        height: 100px;
    }

}
/* @media (max-width:412px){

    .bg-video-wrap {
        width: 100%;
        height: 39vh;
    }

} */


.thankYou{
    text-align: center;
    padding-bottom: 2rem;
    color: var(--black);
    font-size: 4rem;
    letter-spacing: .5rem;
}

/*--------------------------------------------------------------
  # Services Section
--------------------------------------------------------------*/
  .gate .gate-row{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem;
  }

  .gate .gate-card {
    position: relative;
    height: 270px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    transition: all .4s ease-in-out;
    overflow: hidden;
}

.text-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--green);
    padding-left: 80px;
    padding-right: 70px;
    color: var(--black);
    padding: 0 16px;
}

.gate .gate-card h3 {
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease-in-out;
    margin: 10px 0;
}

.gate .gate-card p {
    font-size: 14px;
    text-align: left;
    transition: all .3s ease-in-out;
    color: #ffffff;
}

.gate .gate-card .gate-image img {
    width: 100%;
    height: 210px;
    transition: all .3s ease-in-out;
}

.gate .gate-card:hover {
    transform: translateY(-20px);
}

.gate .read-more {
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 12px;
}

@media (max-width: 768px) {
    .gate .gate-row{
        grid-template-columns: repeat(1, 1fr);
    }

    .page .row .image{
        height: 300px;
    }
}

.custom-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-dialog {
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    background-color: #fff;
}
.custom-modal-header {
    display: flex;
    justify-content: flex-end;
}

.custom-modal-close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.custom-modal-body {
    padding: 10px;
}

.custom-modal-row {
    display: flex;
    flex-wrap: wrap;
}

.custom-modal-img {
    width: 100%;
    max-width: 60%;
    margin-right: 20px;
    cursor: pointer;
}

.custom-modal-text {
    flex: 1;
}

.custom-modal-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.custom-modal-description {
    font-size: 16px;
}

@media (max-width: 768px) {
    .custom-modal-dialog {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #555555;
  }
  
  .blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 10px;
  }
  
  .blog .blog-pagination li a {
    color: var(--color-default);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog .blog-pagination li.active,
  .blog .blog-pagination li:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
  
  .blog .blog-pagination li.active a,
  .blog .blog-pagination li:hover a {
    color: var(--color-white);
  }

  /*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .row{
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
}
.blog .blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .blog .blog-card .blog-img {
    width: 100%;
    height: 250px;
  }
  
  .blog-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-default);
  }
  
  .blog-card p {
    font-size: 14px;
    color: #504f4f;
    font-weight: 500;
  }
  
  .blog-time p,
  .blog-time i {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-third);
  }
  
  .blog-card .post-author-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
  }
  
  .read-btn {
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 0 0 10px 0;
  }
  
  .read-btn:hover {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-third);
  }
  
  /*--------------------------------------------------------------
  # Blog Details
  --------------------------------------------------------------*/
  .blogs .row{
    display: grid;
    grid-template-columns: 1052px 491px !important;
    gap: 2rem;
  }
  
  .blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
  }
  
  .blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
  }
  
  .blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: var(--color-default);
  }
  
  .blog .blog-details .content {
    margin-top: 20px;
  }
  
  .blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  .blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(34, 34, 34, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
  }
  
  .blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .blog .blog-details .meta-top {
    margin-top: 20px;
    color: #6c757d;
  }
  
  .blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog .blog-details .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: var(--color-primary);
  }
  
  .blog .blog-details .meta-top a {
    color: #6c757d;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(34, 34, 34, 0.15);
  }
  
  .blog .blog-details .meta-bottom i {
    color: #555555;
    display: inline;
  }
  
  .blog .blog-details .meta-bottom a {
    color: rgba(34, 34, 34, 0.8);
    transition: 0.3s;
  }
  
  .blog .blog-details .meta-bottom a:hover {
    color: var(--color-primary);
  }
  
  .blog .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog .blog-details .meta-bottom .cats li {
    display: inline-block;
  }
  
  .blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog .blog-details .meta-bottom .tags li {
    display: inline-block;
  }

  
  .blog .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ",";
  }
  
  .blog .blog-details .meta-bottom .share {
    font-size: 16px;
  }
  
  .blog .blog-details .meta-bottom .share i {
    padding-left: 5px;
  }
  
  .blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
  }
  
  .blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: var(--color-default);
  }
  
  .blog .post-author .social-links {
    margin: 0 10px 10px 0;
  }
  
  .blog .post-author .social-links a {
    color: rgba(34, 34, 34, 0.5);
    margin-right: 5px;
  }
  
  .blog .post-author p {
    font-style: italic;
    color: rgba(108, 117, 125, 0.8);
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Blog Sidebar
  --------------------------------------------------------------*/
.blog .sidebar {
padding: 30px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}

.blog .sidebar .sidebar-title {
font-size: 20px;
font-weight: 700;
padding: 0;
margin: 0;
color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
margin-top: 40px;
}

.blog .sidebar .search-form form {
background: #fff;
border: 1px solid rgba(34, 34, 34, 0.3);
padding: 5px 10px;
position: relative;
border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
border: 0;
padding: 4px;
border-radius: 50px;
width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
outline: none;
}

.blog .sidebar .search-form form button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 25px;
margin: -1px;
background: var(--color-primary);
color: #fff;
transition: 0.3s;
border-radius: 50px;
line-height: 0;
}

.blog .sidebar .search-form form button i {
line-height: 0;
}

.blog .sidebar .search-form form button:hover {
background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
list-style: none;
padding: 0;
}

.blog .sidebar .categories ul li+li {
padding-top: 10px;
}

.blog .sidebar .categories ul a {
color: var(--color-default);
transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
padding-left: 5px;
color: rgba(34, 34, 34, 0.4);
font-size: 14px;
}

.blog .sidebar .recent-posts img {
width: 80px;
height: 60px;
}

.blog .sidebar .recent-posts h4 {
font-size: 15px;
font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
color: var(--color-default);
transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
display: block;
font-style: italic;
font-size: 14px;
color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
margin-bottom: -10px;
}

.blog .sidebar .tags ul {
list-style: none;
padding: 0;
}

.blog .sidebar .tags ul li {
display: inline-block;
}

.blog .sidebar .tags ul a {
color: #555555;
font-size: 14px;
padding: 6px 20px;
margin: 0 6px 8px 0;
border: 1px solid #d5d5d5;
display: inline-block;
transition: 0.3s;
border-radius: 50px;
text-wrap: nowrap;
}

.blog .sidebar .tags ul a:hover {
color: #000000;
border: 1px solid var(--color-primary);
background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
padding-left: 5px;
color: rgba(85, 85, 85, 0.8);
font-size: 14px;
}


/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/

.residential .project-img,
.commercial .project-img {
  width: 100%;
  object-fit: cover;
  min-height: 100%;
  transition: all .4s ease-in-out;
  cursor: pointer;
}

.residential .project-img:hover,
.commercial .project-img:hover {
  transform: scale(1.1);
}

.residential h2{
    font-size: 4rem !important;
}

.residential p{
    font-size: 2rem !important;
}

@media (max-width: 768px) {
    .page .row {
        display: block !important;
    }
    .home {
        margin-top: 24% !important;
    }
    .heading-button a {
        padding: 1rem 2.5rem !important;
    }
    .text-shape {
        height: auto !important;
    }
    .page .row .content h3, .vacancy .box-container .box h3 {
        font-size: 2.5rem !important;
    }
    .item .fa-calendar-alt {
        right: 7%;
    }
    .team .box-container {
        display: block !important;
        margin: 0rem;
        margin-bottom: 15px;
    }
}