@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/*------- Reset CSS Starts -------*/
:root {
    --white-color: #fff;
    --primary-color: #F80C17;
    --black-color: #000;
    --meta-balck-color: #181818;
    --icon-color-black: #4F4F4F;
    --gray-color: #DFDFDF;

    --fw-thin: 100;
    --fw-light: 200;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    --fs-h1: 5rem;
    --fs-h2: 4rem;

    --border-radius: 0.6rem;
    --border-redius-1: 1rem;
}
* {
    text-decoration: none;
    list-style: none;
}
html {
    letter-spacing: 1px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
address {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a,
a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
    -webkit-transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    -ms-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* common css */
.only-desktop-header {
    display: flex !important;
}
.only-mobile-header {
    display: none !important;
}
.only-desktop-block {
    display: block;
}
.only-desktop-flex {
    display: flex;
}
.only-mobile-flex {
    display: none !important;
}

.main-relative {
    position: relative;
}

.container-fluid {
    padding: 100px;
}
.container-fluid-x {
    padding: 50px 100px;
}
.container-fluid-y {
    padding: 100px 50px;
}
.container-fluid-half {
    padding: 50px;
}
.container-fluid-half-top {
    padding-top: 50px;
}
.container-fluid-half-bottom {
    padding-bottom: 50px;
}
.container-fluid-half-left {
    padding-left: 50px;
}
.container-fluid-half-right {
    padding-right: 50px;
}
.container-fluid-half-x {
    padding-left: 50px;
    padding-right: 50px;
}
.container-fluid-half-y {
    padding-top: 50px;
    padding-bottom: 50px;
}
.main-mt {
    margin-top: 80px;
}
.text-white {
    color: var(--white-color);
}
.text-medium {
    font-weight: var(--fw-medium);
}
.text-bold {
    font-weight: var(--fw-bold);
}
.transform-y-100 { display: inline-block; -webkit-transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); transform: translateY(100%); }
.overflow-hidden {
    overflow: hidden;
}

.bg-red {
    background-color: var(--primary-color);
}
.fs-lg {
    font-size: 6rem;
}
h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
}
h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
}
.relative {
    position: relative;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.text-justify {
    text-align: justify;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-medium {
    font-weight: var(--fw-medium);
}
.text-gray {
    color: var(--gray-color);
}
/* common css */

/* header starts */
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 50px;
    margin: 0 auto;
    background-color: transparent;
    z-index: 999;
    transition: all 0.3s ease;
}
.header-logo {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 80px;
    z-index: 999;
}
.header-logo img {
    height: 100%;
    object-fit: contain;
    padding: 10px 0;
}

.toggle-menu,
.close-menu {
    display: none;
}

.nav-list {
    display: flex;
}
/* .navmenu ul {
    display: flex;
} */
.navmenu-ul li {
    margin: 0 15px;
}
.navmenu-ul a {
    color: var(--white-color);
}
.navmenu-ul a:hover {
    color: var(--primary-color);
}
.toggle-menu i {
    color: var(--white-color);
}
/* header ends */

/* footer starts */
footer {
    background: url('../images/footer-bg.jpg') no-repeat;
    background-size: 100% 100%;
}
.footer-last-size {
    font-size: 0.8rem;
}
footer a {
    color: var(--white-color);
}
footer a:hover {
    color: var(--primary-color);
}
.footer-middle {
    padding: 50px 0;
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
}
.footer-icon {
    display: flex;
    float: right;
}
.footer-icon > * {
    margin-right: 20px;
} 
.footer-icon > *:last-child {
    margin-right: 0px;
}
.footer-icon i {
    font-size: 1.5rem;
}
.footer-nav {
    display: flex;
    justify-content: space-between;
}
.footer-padding-top {
    padding-top: 80px;
}
.footer-nav > * {
    margin-right: 20px;
} 
.footer-nav > *:last-child {
    margin-right: 0px;
}
.footer-last-2 {
    text-align: center;
}
.footer-last-3 {
    text-align: right;
}
.footer-middle-text {
    max-width: 100%;
    width: 450px;
}
.footer-width {
    max-width: 100%;
    width: 950px;
    margin: auto;
}
/* footer ends */

/* footer1 starts */
.footer1-bg {
    background: url('../images/footer1-bg.jpg') no-repeat;
    background-position: 100% 100%;
    background-size: cover;
}
.footer1-bg {
    height: calc(100vh - 40vh);
}
/* footer1 ends */

/* home-hero sec */
.home-hero-sec-bg {
    background: url('../images/hero-bg.jpg') no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    height: 100vh;
}
.home-hero-sec-bg-internal {
    background: url('../images/internal-hero-bg.jpg') no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    height: 100vh;
}
.home-hero-text-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}
.home-hero-pera {
    max-width: 400px;
}
.home-hero-article {
    height: 100%;
}
.home-hero-text {
    padding: 50px 80px;
}
.prop, .cloud {
    position: absolute;
}
.prop-1 {
    left: 35%;
    top: 40%;
    transform: translateY(-50%);
    width: 80px;
}
.prop-2 {
    right: 35%;
    top: 15%;
    width: 80px;
}
.prop-3 {
    right: 32%;
    top: 60%;
    transform: translateY(-50%);
    width: 160px;
}
.prop-4 {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}
.prop-5 {
    right: 0%;
    bottom: -12%;
    width: 230px;
}
.cloud-1 {
    left: 10%;
    top: 15%;
    width: 200px;
}
.cloud-2 {
    right: -2%;
    top: 20%;
    width: 80px;
}
/* home hero sec */

/* seconde sec */
.home-welcome-container {
    display: flex;
    justify-content: center;
    max-width: 1050px;
    margin: auto;
}
.home-welcome-title {
    text-align: right;
    border-right: 2px solid var(--white-color);
    padding-right: 20px;
}
.home-welcome-pera {
    display: flex;
    align-items: center;
    max-width: 350px;
    margin-left: 20px;
}
/* seconde sec */

/* btn starts */
.g-btn {
    border: none;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--white-color);
    outline: none;
}
/* btn ends */

/* input css */
.g-input-container input {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    outline: none;
    border: none;
    transition: all 0.1s ease;
}
.g-input-container input:focus {
    border: 2px solid var(--primary-color);
}
.footer1-prop {
    width: 200px;
    position: absolute;
    bottom: -10%;
    left: 6%;
}
/* input css */

/* sec 3 */
.home-sec-3 {
    width: 100%;
    height: 100vh;
    background: url('../images/home-sec-3.jpg')no-repeat;
    background-size: 100% 100%;
    position: relative;
}
.home-sec-3img1 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    position: absolute;
    top: 15%;
    left: 15%;
}
.home-sec-3img2 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    position: absolute;
    top: 60%;
    left: 50%;
}
 
/* sec 3 */

 
/* home service sec */
.service-bg {
    background: url('../images/home-service-bg.jpg') no-repeat;
    background-position: 100% 100%;
    background-size: cover;
}
.service-prop-1 {
    position: absolute;
    width: 100px;
    left: 5%;
    top: 10%;
}
.service-prop-2 {
    position: absolute;
    width: 100px;
    right: 5%;
    top: 15%;
}
/* service swiper */
.service-swiper-w {
    width: 280px;
}
.service-swiper-w img {
    width: 100%;
}
.service-swiper-w-sm {
    width: 180px;
}
.service-swiper-w-sm img {
    width: 100%;
}

.service-swiper-w-lg {
    width: 380px;
}
.service-swiper-w-lg img {
    width: 100%;}

.service-swiper-y {
    height: 280px;
}
.service-swiper-y-sm {
    height: 180px;
}
.service-swiper-y-lg {
    height: 380px;
}
.service-swiper-img-bottom {
    display: flex;
    align-items: flex-end;
}
.homeService {
    padding-top: 50px;
}
.service-pera-bottom {
    display: flex;
    align-items: flex-end;
}
/* service swiper */
/* home service sec */

/* home earth sec */
.earth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 0;
}
.earth-img {
    width: 450px;
}
.earth-img img {
    width: 100%;
}

.earth-text-1 {
    position: absolute;
    left: 5%;
    top: 5%;
}
.earth-text-2 {
    position: absolute;
    right: 12%;
    top: 20%;
}
.earth-text-3 {
    position: absolute;
    left: 8%;
    top: 45%;
}
.earth-text-4 {
    position: absolute;
    right: 25%;
    top: 65%;
}

.earth-pera {
    max-width: 450px;
    margin: auto;
}
.earth-1 {
    position: relative;
    bottom: -50px;
    left: -50px;
    width: 350px;
}
.earth-1 img {
    width: 100%;
}
.earth-2 {
    position: relative;
    bottom: -50px;
    right: -50px;
    width: 450px;
    display: flex;
    align-items: center;
}
.earth-2 img {
    width: 100%;
}
.earth-bottom-img {
    display: flex;
    justify-content: space-between;
}
/* home earth sec */

/* home testimonial swiper */
.home-testimonial-pera {
    max-width: 650px;
}
.home-testimonial-black-bg {
    background-color: #000;
}
.home-testimonial-quote-svg svg {
    width: 100px;
}
.home-testimonial-text {
    margin-left: 50px;
    width: 100%;
}
.home-testimonial-img {
    width: 100%;
    height: 100%;
}
.home-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumbs {
    height: 100%;
}
.home-testimonial-container {
    /* height: 50vh; */
    height: 100%;
    position: relative;
    z-index: 10;
}
.home-testimonial {
    height: 100%;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    width: 100%;
}
.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}
.home-testimonial-swiper-slide {
    padding-bottom: 25px;
}

.home-testimonial-wrap-bg {
    position: absolute;
    right: -9%;
    height: 100%;
    width: 80px;
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(255, 0, 0, 0) 100%);
    z-index: 5;
}
.gallery-thumbs {
    position: relative;
    z-index: 5;
}
/* .home-testimonial-pagination {
    z-index: 15;
} */
/* .home-testimonial-swiper-wrapper > .swiper-slide.swiper-slide-active {
    z-index: 5;
}
.home-testimonial-swiper-wrapper > .swiper-slide {
    z-index: -1;
} */
/* .faded {
    box-shadow: 0 0 8px 8px white inset;
} */
/* home testimonial swiper */


#homeHeroPara1 {
    opacity: 0;
}


/* contact page starts */

.contactTitle{
    font-size: 200px;
}
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.contact-hero-img-container {
    width: 400px;
}
.contact-hero-img-container img {
    width: 100%;
}
.contact-hero-img-container {
    margin-left: -120px;
}

.contact-input input {
    background-color: var(--black-color);
    outline: none;
    border: none;
    padding: 20px 15px;
    width: 100%;
    border-radius: var(--border-radius);
}
input:focus {
    color: var(--white-color);
}
.contact-form-container {
    padding: 50px;
    background-color: var(--meta-balck-color);
    border-bottom-left-radius: var(--border-redius-1);
    border-top-left-radius: var(--border-redius-1);
}

.contact-textarea textarea {
    background-color: var(--black-color);
    outline: none;
    border: none;
    padding: 20px 15px;
    width: 100%;
    border-radius: var(--border-radius);
}
textarea:focus {
    color: var(--white-color);
}
.contact-submit-btn {
    display: flex;
    justify-content: flex-end;
}
.contact-text-left-border {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
}
.contact-text-icon i {
    font-size: 0.8rem;
    color: var(--icon-color-black);
    padding-top: 5px;
}
.ml-2 {
    margin-left: 0.5rem;
}
.contact-text-title {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white-color);
    margin-bottom: 20px;
}
.contact-text-container {
    padding-right: 50px;
}

.contact-icon {
    display: flex;
}
.contact-icon > * {
    margin-right: 20px;
} 
.contact-icon > *:last-child {
    margin-right: 0px;
}
.contact-icon i {
    font-size: 1.5rem;
}
.contact-icon a {
    color: var(--white-color);
}
.contact-icon a:hover {
    color: var(--primary-color);
}

/* contact page ends */

/* about page start  */

 
.about_1{
  width: 100%;
  min-height:100vh;
  background-image: url('../images/footer1-bg.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;  
  display: grid;
  grid-template-rows: 33% 33% 33%;
}
.aboutTitle {
   font-size: 250px;
}
.about1_img1  {
    width:80%
}
.about1_img2  {
    width:80%
}
.about1_img3  {
    width:250px
}
.about1_1{
    display: grid;
    grid-template-columns: 40% 40% 20%;
}
.about1_2{
    display: grid;
    grid-template-columns: 50% 50%;
}
.about_2{ 
    width: 100%;
    min-height:100vh;
    background-image: url('../images/about/about_section_2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%; 
}
.about2_1{
    width: 90%;
    margin: auto; 
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 100px;
    padding:10px;
    color: white;
}
.about2_1> div{
    padding: 10px; 
}
.about2_1> div>div{
    width: 80%;
    margin: 10% auto;
}
.about2_1> div>div>img{
    width: 100%; 
}
.about_3{
    text-align: center;
}
.about3_1{
    width: 80%;
    margin: 10% auto;
    display: grid;
    grid-template-columns: 30% 70%;  
    gap: 50px;
}
.about3_1img{
    width: 90%;
    margin: 50px auto;
}
.about3_1img >img{
    width: 100%;
    height: 100%;
}
.about3_2{
    width: 90%;
    min-height: 80vh;
    margin: 0 auto;
    background-color: red;
    text-align: center;
    border-radius: 15px;
    color: white;
    padding: 20px;
    position: relative;
    display: grid;
    align-items: center;
} 
 
.about3_2img1{
    position: absolute;
    top: 10%;
    left: -30px;
    width: 70px;
    transform: translateY(-50%);
}
.about3_2img2{
    position: absolute;
    top: 10%;
    right: -20px;
    width: 70px;
}
.about3_2img3{
    position: absolute;
    bottom: 10%;
    left: -30px;
    width: 70px;
}
.about3_2img4{
    position: absolute;
    bottom: 5%;
    right: -50px;
    width: 130px;
}
.about3_3{
    height: 100vh;
    background-color: red;
    margin: 100px 0px;
    display: grid;
    align-items: center;
}
#aboutOurVison{
    font-size: 280%;
    margin-top: -60px;
}
.about4_1{
    width: 90%;
    margin:auto;
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 50px;
}
.about4_1>div>div>h5{
    padding: 5px;
    margin: 5px;
}
.about4_imgdiv{
    max-width: 500px;
}
.about4_imgdiv>img{
width: 100%;
height: 100%;
}
.about_5{
    width: 100%;
    min-height:100vh;
    background-image: url('../images/about/about10.png');
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    display: grid;
    align-items: center;
    text-align: center;
}
.about5_1{
    width: 90%;
    margin: auto;
    color: white;
}
.about5_1 > h5{
width: 80%;
margin: auto;
}
 
 
 
@media(max-width:770px){
    .contactTitle{
        font-size: 70px;
    }
    .aboutTitle {
        font-size: 120px !important;
     }
    .about_1{
        width: 100%;
        min-height:100vh;
        background-image: url('../images/footer1-bg.jpg');
        background-repeat: no-repeat;
        background-size: 100% 100%;  
        display: grid;
        grid-template-rows: 16% 50% 33%;
      }
    .about2_1{
        width: 90%;
        margin: auto; 
        display: grid;
        grid-template-columns: 100%;
        gap: 0px;
        padding:10px;
        color: white;
    } 
    .about3_1{
        width: 80%;
        margin: 10% auto;
        display: grid;
        grid-template-columns: 100%;  
        gap: 0px;
    }
    #aboutOurVison{
        font-size: 200%;
        margin-top: -10px;
    }
    .about4_1{
        width: 90%;
        margin:auto;
        display: grid;
        grid-template-columns: 100%;
    }
    .about1_1{
        display: grid;
        grid-template-columns: 100%;
        margin: auto;
        align-items: center;
        justify-content: center;
    }
    .about1_2{
        display: grid;
        grid-template-columns: 100%;
        margin: auto;
        align-items: center;

    }
    .aboutTitle{
        font-size: 150px;
        text-align: center;
    }
    .about1_img1  {
       width: 330px;
       height: 200px;
       text-align: center;
       margin:0;
    }
    .about1_img2  {
       width: 330px;
        height: 200px;
        text-align: center;
       margin:0;

    }
    .about1_img3  {
       width: 330px;
       height: 200px;
       text-align: center;
       margin:0;

    }
}

/*  about css end */

/* service css start */
.servise_1{
    min-height: 100vh;
    background: url('../images/footer1-bg.jpg') no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    display: grid;
    grid-template-rows: 33% 33% 33%;
}
.serviceText{
text-align: center;
font-size: 170px;
margin: 0;
padding: 0;
}
.servise_1>div>div{
    width: 30vh;
    height: 100%;
    margin-left: 20%

}  
#service1_img1 #service1_img1{
    width: 100%;
    height: 100%;

}
.service_2{ 
    width: 100%;
    min-height:100vh; 
    background-color: red;
}
.service2_1{
    width: 90%;
    margin: auto; 
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 100px;
    padding:10px;
    color: white;
}
.service2_1> div{
    padding: 10px; 
}
.service2_1> div>div{
    width: 90%;
    margin: 10% auto;
}
.service2_1>div>div>img{
    width: 100%; 
    height: 50vh;
    margin-top: -40%;
    object-fit: cover;
}
.service_3{
    background-color: black;
    border-bottom: 1px solid white;
}
.service3_1{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
}
.service3_1> div{
    border-left: 1px solid white;
    border-right: 1px solid white;
}
.service3_imgDiv{
    height: 50vh;
}
.service3_imgDiv5{
    height: 40vh;
}
.service3_imgDiv > img{
    width: 100%;
    height: 100%;
}
.service3_imgDiv5 > img{
    width: 100%;
    height: 100%;
}
.service3_blanckDiv{
    height: 40vh;
}
.service3Augmented{
    position: relative;
    top: 34vh;
    left: 20px;
}
@media(max-width:770px){
    .service2_1{
        width: 90%;
        margin: auto; 
        display: grid;
        grid-template-columns: 100%;
        gap: 0px;
        padding:10px;
        color: white;
    } 
    .service2_1>div>div>img{
        width: 100%; 
        margin-top: 0%;
    }
    .service3_1{
        width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 100%;
    }
    .serviceText{
        text-align: center;
        font-size: 80px;
        margin: 0;
        padding: 0;
        }
     
}

/* end service css */

/* start portfolio css */
.portfolio{
    background-color: #000;
}
.portfolio_1{
    min-height: 100vh;
    background: url('../images/footer1-bg.jpg') no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    display: grid;
    grid-template-rows: 40% 40% 20%;
}
.portfolio1_1{
    display: grid;
    grid-template-columns: 70% 30%;
}
.portfolio1_2{
    display: grid;
    grid-template-columns: 30% 70%;
}
.portfolioTitle{
    font-size: 250px;
}
.portfolio1_img2{
    width:80%;
}
.portfolio1_img3{
    width: 150px;
    position: relative;
    left: 70%; 
}
.ortfolio_2{
    background-color: black;
    color: white;
    text-align: center; 
}
.ortfolio2_1{
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
   align-items: center;
   justify-content: space-evenly;
    flex-wrap: wrap;
}
.ortfolio_3{
    background-color: #000;
}
.ortfolio3_1{
    /* background-color: #000; */
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 24% 24% 24% 24% ;
    gap: 150px 20px;
   
}
.ortfolio3_11{ 
    border-left: 1px solid white;
    border-right: 1px solid white;
    margin-bottom: 50px;
}
.ortfolio3_11_div1{
    height: 40vh;
}
/* portfiol2 css */
.portfolio3grid{
    height: 45vh;
    background-color: black;
    color: white; 
}
.portfolio3grid > img{
    width: 100%;
    height: 100%;
}
#portfolioHide{
display: block;
}
@media(max-width:770px){ 
    .portfolio_1{
        min-height: 100vh;
        background: url('../images/footer1-bg.jpg') no-repeat;
        background-position: 100% 100%;
        background-size: cover;
        display: grid;
        grid-template-rows: 50% 25% 25%;
        justify-content: center;
        align-items: center;
    }
    .ortfolio3_1{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: 50% 50%;
    }
     #portfolioHide{
        display:none;
     }
     .portfolio1_1{ 
        display: grid;
        grid-template-columns: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .portfolio1_2{
        display: grid;
        grid-template-columns: 100%;
        text-align: center;
        align-items:center;
        justify-content: center; 
        
    }
    .portfolioTitle{
        font-size: 110px;
    }
    .portfolio1divhide{
        display: block;
        display: grid;
        align-items: center;
    }
    .portfolio1divhide2{
        display: none;
    }
    .portfolio1_img1{
        width: 330px;
        height: 200px;
        position: static;
        margin: auto;
    }
    .portfolio1_img3{
        width: 330px;
        height: 200px;
        position: static;
        margin: auto;

    }
    
}
   
@media(max-width:550px){
    .ortfolio3_1{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns:100%;
    }
     
}
  
/* start  css */
._1{    
  width: 100%;
  min-height:100vh;
  background-image: url('../images/footer1-bg.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;  
}
.1_1{
    width: 80%;
    min-height: 80vh;
    margin: 0 auto;
    text-align: center;
    border-radius: 15px; 
    padding: 20px;
    position: relative;
    display: grid;
    align-items: center;
}  
.Titel{
    font-size: 250px;
}
.Img3{
    position: absolute;
    top: 10%;
    right: -20px;
    width: 100px;
}
.Img2{
    position: absolute;
    bottom: 10%;
    left: -30px;
    width: 130px;
}
.Img1{
    position: absolute;
    bottom: 5%;
    right: -50px;
    width: 100px;
}
._2{
    width: 100%;
    min-height:100vh;
    background-image: url('../images/footer1-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
}
.2_1{
    width: 90%;
    min-height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
}
.2_1 > div{
    padding: 20px;
}
.2_11{
    width: 100%;
    height: 100%;
    margin: auto;
}
.Img4{
width: 100%;
height: 100%;
border-radius: 10px;
}
@media(max-width:770px){
    .2_1{
        width: 90%;
        min-height: 100vh;
        margin: auto;
        display: grid;
        grid-template-columns: 100%;
    }
    .Titel{
        font-size: 90px;
    }
}
/* end  page */

/* start service details page */
.serviceD_1{
    min-height: 200vh;
    background-image: url('../images/footer1-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
}
.serciveD1_1{
    width: 90%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    margin: auto;
    background-image: url('../images/service-detail/serviceD1.png');
    background-repeat: no-repeat;
    background-size: 380px 380px; 
    background-position: 70% 60%;
}
 #serviceDTitle #serviceDTitle1{
    font-size: 160px !important;
   } 

.serviceD1img{
    width: 150px;
    position: relative;
    top:200px;
    left: 30px;
}
.serciveD1_2{
    width:90%;
    min-height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap:10px;

}
.serviceD2{
    background-color:red;
    min-height: 150vh; 
    display: grid;
    grid-template-columns: 50% 50%;
    background-image: url('../images/service-detail/serviceD6.png');
    background-repeat: no-repeat;
    background-size: 40% 60%; 
    background-position: 0 0;
}
.serviceD2_1{
    display: grid;
    grid-template-columns: 30% 60%;
}
.serviceD21_1{
    width: 100%;
    margin: 0;
    padding: 0;
}
#servicDmoveText{
    width:500px;
    transform: rotate(270deg);
    text-align: left; 
    margin:100% -130px;
    padding: 0;
}
.serciceD21_img{
    display: block;
    width: 300px;
}
.serviceD3{
    min-height: 200vh;
}
.serviceD3_1{
    width: 90%;
    margin:50px auto ;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}
.serviceD3img{
    width: 100%;
    filter: grayscale(100%)
}
.serviceD4{
    background-color: black;
    min-height: 100vh;
}
.serviceD4_1{
 width: 90%;
 margin:auto;
 display: grid;
 grid-template-columns: 25% 25% 25% 25%;   
}
.ourPortfolioText{
    text-align: center;
    font-size: 150px;
}
.serviceD4_1Div{
    height: 40vh;
}
.serviceD4_1Div>img{
    width: 100%;
    height: 100%;
} 

@media(max-width:770px){
    .serciveD1_1{
        width: 90%;
        min-height: 100vh;
        display: grid;
        grid-template-columns: 100%;
        align-items: center;
        margin: auto;
        background-image: url('../images/service-detail/serviceD1.png');
        background-repeat: no-repeat;
        background-size: 380px 380px; 
        background-position: 70% 60%;
    }
    #serviceDTitle #serviceDTitle {
        font-size: 60px;
        transform: rotate(270deg);
        text-align: center;
        position: relative;
        top: 200px;
       }
       .serviceDmoveimgClock{
        
       }
       .serviceD1img{
        width: 150px;
        position: relative;
        left: 35%;
        top:-20%; 
    }
    .serciveD1_2{
        width:90%;
        min-height: 100vh;
        margin: auto;
        display: grid;
        grid-template-columns: 100%;
        gap:10px; 
    
    }
    .serviseD1_2img{
        position: relative;
        right: 55%;
    }
    .serviceD2{
        background-color:red;
        min-height: 150vh; 
        display: grid;
        grid-template-columns:100%;
    }
    .serviceD3_1{
        width: 90%;
        margin:50px auto ;
        display: grid;
        grid-template-columns: 100%;
        gap: 10px;
    }
    .serviceD4_1{
        width: 90%;
        margin:auto;
        display: grid;
        grid-template-columns: 50% 50%;   
       }
       .ourPortfolioText{
           text-align: center;
           font-size: 70px;
       }
}
@media(max-width:500px){
    .serviceD4_1{
        width: 90%;
        margin:auto;
        display: grid;
        grid-template-columns: 100%;   
       }
       .ourPortfolioText{
           text-align: center;
           font-size: 50px;
       }
       #servicDmoveText{
        width:500px;
        transform: rotate(270deg);
        text-align: left; 
        margin:100% -200px;
        padding: 0;
    }
    .serciceD21_img{
        display: none; 
    }
}

/* end service detail css */


/* start portfolio internal css */
.portfolio_intern_1{
    min-height: 100vh;
    background-image: url('../images/footer1-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
}
 
.portfolio_intern1_1{
    width: 90%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    margin: auto;
    /* background-image: url('../images/pi1.png'); */
    background-repeat: no-repeat;
    background-size: 380px 380px; 
    background-position: 70% 60%;
}
 #portfolio_intern1Title {
    font-size: 100px !important;
   } 
.portfolio_intern1img{
    width: 150px;
    position: relative;
    top:200px;
    left: 30px;
}
.portfolio_intern_2{
    min-height: 150vh;
    background-color: black;
}
.portfolio_intern2_1{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 20px;
}
.portfolio_intern2_11{
margin-top: 200px;
}
.portfolio_intern2_11 > div{
    border-left: 5px solid red;
    padding: 5px;
    margin: 20px auto;
}
.portfolio_intern_3{
    min-height: 100vh;
    background-color: black;
}
.portfolio_intern3_1{
    width:100%;
    margin: auto;
    background-color: black;

}
.portfolio_intern_4{
    min-height: 100vh;
    background-color: black;
}
 .portfolio_intern_5{
    min-height: 100vh;
    background-color: black;
 }
 
.portfolio_intern5_1{
    width: 90%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    margin: auto;
    /* background-image: url('../images/pi1.png'); */
    background-repeat: no-repeat;
    background-size: 380px 380px; 
    background-position: 70% 60%;
}
 #portfolio_intern5Title #portfolio_intern5Title1{
    font-size: 160px !important;
   } 
.portfolio_intern5img{
    width: 150px;
    position: relative;
    top:200px;
    left: 30px;
}
.tJustify{
    text-align: justify;
}
 

@media(max-width:770px){
    .portfolio_intern1_1{
        width: 90%;
        min-height: 100vh;
        display: grid;
        grid-template-columns: 100%;
        align-items: center;
        margin: auto;
        /* background-image: url('../images/service-detail/serviceD1.png'); */
        background-repeat: no-repeat;
        background-size: 380px 380px; 
        background-position: 70% 60%;
    }
    #portfolio_intern1Title #portfolio_intern1Title {
        font-size: 60px;
        transform: rotate(270deg);
        text-align: center;
        position: relative;
        top: 200px;
       } 
       .portfolio_intern1img{
        width: 150px;
        position: relative;
        left: 35%;
        top:-20%; 
    } 
    .portfolio_intern2_11{
        margin-top: 0px;
        }
    .portfolio_intern2_1{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: 100%;
    }
    .portfolio_intern_3{
        min-height: 60vh;
        background-color: black;
    }
    .portfolio_intern1_5{
        width: 90%;
        min-height: 100vh;
        display: grid;
        grid-template-columns: 100%;
        align-items: center;
        margin: auto;
        background-image: url('../images/service-detail/serviceD1.png');
        background-repeat: no-repeat;
        background-size: 380px 380px; 
        background-position: 70% 60%;
    }
    #portfolio_intern5Title #portfolio_intern5Title {
        font-size: 60px;
        transform: rotate(270deg);
        text-align: center;
        position: relative;
        top: 200px;
       } 
       .portfolio_intern5img{
        width: 150px;
        position: relative;
        left: -120%;
        /* top:-20%;  */
    } 
}

@media (max-width: 550px){
    .home-sec-3 {
        width: 100%;
        height: 100vh;
        background: url('../images/home-sec-3.jpg')no-repeat;
        position: relative;
        background-position: 45% 20%;
        object-fit: cover;
    }
    .earth-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .earth-img img {
        width: 70%;
    }
}






        .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 5px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}



/*** Service ***/


.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    /*color: var(--dark);*/
    color: #FFFFFF;
    background: var(--secondary);
}
