 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {

     font-family: 'Poppins', sans-serif;
 }

 /* Global Tags*/

 h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: rgb(35, 35, 85);
 }

 span {
     font-size: .9rem;
     color: #757373;
 }

 h6 {
     font-size: 1.1rem;
     color: rgb(24, 24, 49);
 }
 /* Top navbar */
#new{
    background-color: #F9F9FF;
    color: rgb(35, 35, 85);
    padding: 5px;
   
}

#new .details{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#new .details .phone{
margin-right: 15px;
}
#new .details .phone i{
    margin-right: 4px;
}

#new .details .email{
    margin-left: 10px;
}
#new .details .email i{
    margin-right: 4px;
}
 /* Nav bar

nav{
    position: fixed;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 5vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

nav img{
    width: 200px;
    cursor: pointer;
}
nav .navigation {
    display: flex;
}

#menu-btn {
    width: 30px;
    height: 30px;
    display: none;
}

#menu-close {
    display: none;
}

nav .navigation ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

nav .navigation ul li{
    list-style: none;
    margin-left: 30px;
}
nav .navigation ul li a{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navigation ul li a:hover{
    color: rgb(242, 96, 38);

}
 */


 /* Home */

 #home {
     background-image: linear-gradient(rgba(3, 3, 30, 0.3), rgba(3, 3, 36, 0.7)), url("images/back.jpg");
     width: 100%;
     height: 100vh;
     background-size: cover;
     background-position: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 40px;
 }

 #home h1 {
     color: #fff;
     font-size: 2.2rem;
     letter-spacing: 1px;
 }

 #home p {
     width: 50%;
     color: #fff;
     font-size: 0.9rem;
     line-height: 25px;
 }

 #home .btn {
     margin-top: 30px;
 }

 #home a {
     text-decoration: none;
     font-size: 0.9rem;
     padding: 13px 35px;
     background-color: #fff;
     font-weight: 600;
     border-radius: 5px
 }

 #home a.blue {
     color: #fff;
     background-color: rgb(21, 21, 100);
     transition: 0.3s ease;
 }

 #home a.blue:hover {
     color: rgb(21, 21, 100);
     background-color: #fff;
 }

 /* Services section*/

 #services {
     padding: 5vw 8vw 6vw 8vw;
     text-align: center;
 }

 #services .ser-base {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     grid-gap: 1rem;
     margin-top: 50px;
 }

 #services .ser-box {
     background: #F9F9FF;
     text-align: start;
 }

 #services .ser-box i {
     font-size: 2.3rem;
     color: rgb(44, 44, 80);
 }

 #services .ser-box h3 {
     font-size: 1.2rem;
     font-weight: 600;
     color: rgb(46, 46, 59);
     padding: 13px 0 7px 0;
 }

 #services .ser-box p {
     font-size: 1rem;
     font-weight: 400;
     color: rgb(70, 70, 87);
 }

 /*Registration*/

 #registration {
     padding: 4vw 6vw 4vw 6vw;
     background-image: linear-gradient(rgba(99, 112, 168, 0.5), rgba(81, 91, 233, 0.5)), url("images/contact.jpg");
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 50px;
 }

 #registration .remainder {
     color: #fff;
     margin-right: 90px;
 }

 #registration .remainder h2 {
     color: #fff;
     text-align: center;
 }

 #registration .remainder p {
     position: relative;
     margin-top: 10px;
     text-align: center;
     padding: 13px 33px;
     background: rgba(255, 255, 255, 0.25);
     backdrop-filter: blur(4px);
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
     border-radius: 10px;
     margin: 0 5px 10px 5px;
     border: 1px solid rgba(255, 255, 255, 0.18);
     font-size: 1.1rem;
     font-weight: 600;
 }

 #registration .form {
     width: 60%;
     background-color: #f7f6fa;
     padding: 30px;
     border-radius: 10px;
 }

 #registration .form h4 {
     font-size: 24px;
     color: #2c234d;
     line-height: 30px;
     margin-bottom: 8px;
 }

 #registration .form p {
     color: #686875;
     line-height: 24px;
     margin-bottom: 25px;
 }

 #registration .form .form-row {
     display: flex;
     justify-content: space-between;
     width: 100%;
 }

 #registration .form .form-row input {
     width: 48%;
     font-size: 14px;
     font-weight: 400;
     border-radius: 3px;
     border: none;
     background: #fff;
     color: #737083;
     outline: none;
     padding: 20px 20px;
     margin-bottom: 20px;
 }

 #registration .form .form-col input,
 #registration .form .form-col textarea {
     width: 100%;
     font-size: 14px;
     font-weight: 400;
     border-radius: 3px;
     border: none;
     background: #fff;
     color: #7e7c87;
     outline: none;
     padding: 20px 20px;
     margin-bottom: 20px;
 }

 #registration .form button {
     font-size: .9rem;
     padding: 13px 25px;
     background: rgb(21, 21, 100);
     border-radius: 5px;
     outline: none;
     font-weight: 600;
     cursor: pointer;
     color: #fff;
 }

 /*Clients comments*/

 #clients {
     padding: 8vw 8vw 8vw 8vw;
     text-align: center;
 }

 #clients .expert-box {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     grid-gap: 1rem;
     margin-top: 50px;
 }

 #clients .expert-box .profile {
     background-color: #fafaf1;
 }

 #clients .expert-box .profile img {
     width: 40%;
     height: 50%;
     margin-top: 10px;
     margin-bottom: 5px;


 }

 /*Footer*/

 footer {
     padding: 8vw;
     background-color: #101c32;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
     /*margin-top: 40px;*/
 }

 footer .footer-col {
     padding-bottom: 40px;
 }

 footer h3 {
     color: rgb(241, 240, 245);
     font-weight: 600;
     padding-bottom: 20px;
 }

 footer li {
     list-style: none;
     color: #7b838a;
     padding: 10px 0;
     cursor: pointer;
     transition: 0.3s ease;
 }

 footer li:hover {
     color: rgb(241, 240, 245);

 }

 footer li a {
     list-style: none;
     color: #7b838a;
     padding: 10px 0;
     cursor: pointer;
     transition: 0.3s ease;
 }

 footer li a:hover {
     color: rgb(241, 240, 245);

 }

 footer p {
     color: #7b838a;
 }

 footer .subscribe {
     margin-top: 20px;
 }

 footer input {
     width: 220px;
     padding: 15px 12px;
     background: #334F6c;
     border: none;
     outline: none;
     color: #fff;
 }

 footer .subscribe a {
     text-decoration: none;
     font-size: 0.9rem;
     padding: 15px 12px;
     background-color: #fff;
     font-weight: 600;
 }

 footer .subscribe a.yellow {
     color: #2c2c2c;
     background: #FDC93B;
     transition: 0.3s ease;
 }

 footer .subscribe a.yellow:hover {
     color: rgb(21, 21, 100);
     background-color: #fff;
 }

 footer .copyright {
     margin-top: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     flex-wrap: wrap;
 }

 footer .copyright p {
     color: #fff;
 }

 footer .copyright .pro-links {
     margin-top: 0px;
 }

 footer .copyright .pro-links i {
     /* background-color: #5f7185;*/
     color: #fff;
     font-size: 1.5rem;
     margin-inline: 5px;
 }

 footer .copyright .pro-links i:hover {
     background-color: #FDC93B;
     color: #2c2c2c;
 }

 /*About*/

 #about-home {
     background-image:
         /*linear-gradient(rgba(9, 5, 54, 0.3), rgba(5,4,46,0.7)), */
         url("images/about.jpg");
     width: 100%;
     height: 60vh;
     background-size: cover;
     background-position: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 40px;
 }

 #about-home h1 {
     color: #fff;
     font-size: 2.2rem;
     letter-spacing: 1px;
 }

 #about-container {
     display: flex;
     padding-top: 40px;
 }


 #about-container .about-img {
     width: 50%;
     padding: 4vw 2vw 2vw 2vw;
 }

 #about-container img {
     width: 100vh;
     height: 60vh;
 }

 #about-container .about-text {
     width: 45%;
     padding: 60px 25px 10px 40px;
     margin-left: 30px;
 }

 #about-container .about-text h1 {
     color: 29303B;
     padding-bottom: 15px;
 }

 #about-container .about-text p {
     font-weight: 400;

 }

 /* Contact us */

 #contact {
     padding: 8vw;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;

 }

 #contact .getin {
     width: 350px;
 }

 #contact .getin h1 {
     color: #2c234d;
     font-size: 30px;
     font-weight: 800;
     line-height: .8;
     margin-bottom: 16px;
 }

 #contact .getin p {
     color: #686875;
     line-height: 24px;
     margin-bottom: 33px;
     padding-bottom: 25px;
     border-bottom: 1px solid #e5e4ed;
 }

 #contact .getin h3 {
     color: #2c234d;
     font-size: 16px;
     font-weight: 600;
     line-height: 26px;
     margin-bottom: 16px;
 }

 #contact .getin .getin-details div {
     display: flex;
 }

 #contact .getin .getin-details div .get {
     font-size: 16px;
     line-height: 22px;
     color: #5838fc;
     margin-right: 20px;
 }

 #contact .getin .getin-details div p {
     font-size: 14px;
     border-bottom: none;
     line-height: 22px;
     margin-bottom: 15px;
 }

 #contact .getin .getin-details .pro-links i {
     margin-right: 8px;
 }

 #contact .form {
     width: 60%;
     background-color: #f7f6fa;
     padding: 40px;
     border-radius: 10px;
 }

 #contact .form h4 {
     font-size: 24px;
     color: #2c234d;
     line-height: 30px;
     margin-bottom: 8px;
 }

 #contact .form p {
     color: #686875;
     line-height: 24px;
     margin-bottom: 25px;
 }

 #contact .form .form-row {
     display: flex;
     justify-content: space-between;
     width: 100%;
 }

 #contact .form .form-row input {
     width: 48%;
     font-size: 14px;
     font-weight: 400;
     border-radius: 3px;
     border: none;
     background: #fff;
     color: #7e7c87;
     outline: none;
     padding: 20px 30px;
     margin-bottom: 20px;
 }

 #contact .form .form-col input,
 #contact .form .form-col textarea {
     width: 100%;
     font-size: 14px;
     font-weight: 400;
     border-radius: 3px;
     border: none;
     background: #fff;
     color: #7e7c87;
     outline: none;
     padding: 20px 30px;
     margin-bottom: 20px;
 }

 #contact .form button {
     font-size: .9rem;
     padding: 13px 25px;
     background: rgb(21, 21, 100);
     border-radius: 5px;
     outline: none;
     font-weight: 600;
     cursor: pointer;
     color: #fff;
 }

 #map {
     width: 100%;
     height: 70vh;
     margin-bottom: 8vw;
 }

 #map iframe {
     width: 100%;
     height: 100%;
 }

 /* Services GST */

 #services-container {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     padding: 8vw;
 }

 #services-container .services {
     width: 60%;
 }

 #services-container .services img {
     width: 100%;
     border-radius: 19px;
 }

 #services-container .services .post h3 {
     color: #29303B;
     padding: 15px 0 10px 0;
 }

 #services-container .services .post p {
     color: #757373;
     padding-bottom: 20px;

 }

 #services-container .cate {
     width: 30%;
 }

 #services-container .cate h1 {
     padding-bottom: 7px;
 }

 #services-container .cate a {
     text-decoration: none;
     color: #757373;
     font-weight: 500;
     line-height: 45px;
 }






 @media (max-width: 769px) {
     nav {
         padding: 15px 20px;

     }

     nav img {
         width: 130px;
     }

     #menu-btn {
         display: initial;
     }

     #menu-close {
         display: initial;
         font-size: 1.6rem;
         color: #fff;
         padding: 30px 0 20px 20px;

     }

     nav .navigation ul {
         position: absolute;
         top: 0;
         right: -220px;
         width: 220px;
         height: 100vh;
         background: rgba(17, 20, 104, 0.45);
         backdrop-filter: blur(4.5px);
         border: 1px solid rgba(255, 255, 255, 0.18);
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         align-items: flex-start;
     }

     nav .navigation ul .active {
         right: 0;
     }

     nav .navigation ul li {
         padding: 20px 0 20px 40px;
         margin-left: 0;
     }

     nav .navigation ul li a {
         color: #fff;
     }

 }



 @media (max-width:475px) {

     /*Home page*/
     h2 {
         font-size: 1.9rem;
         font-weight: 700;
         color: rgb(35, 35, 85);
     }

     .header .logo img {
         width: 250px;
         height: 60px;
     }
     #new{
        padding: 0;
     }

     #new .details {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #new .details .email {
        margin-left: 1px;
        font-size: 0.8rem;
    }
    #new .details .phone {
        margin-left: 1px;
        font-size: 0.9rem;
    }

     #home {
         height: 70vh;
     }

     #about-home h1 {
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-top: 45px;
    }
     #home h1 {
         font-size: 1.9rem;
         letter-spacing: 1px;
         margin-top: 30px;
     }

     #home p {
         width: 100%;
         color: #fff;
         font-size: 0.9rem;
         line-height: 25px;
     }

     #registration {
         padding: 2vw 3vw 2vw 3vw;
         text-align: center;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         margin-top: 50px;
     }

     #registration .remainder h2 {
         font-size: 1.9rem;
         font-weight: 500;
         text-align: center;
     }

     #registration .remainder {
         color: #fff;
         margin-right: 0;
     }

     #registration .form {
         width: 100%;
         padding: 20px 20px;
         margin: 20px;
     }

     #registration .form .form-row {
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         width: 100%;
     }

     #registration .form .form-row input {
         width: 100%;
     }




     /*Footer*/
     footer input {
         width: 190px;
         padding: 15px 12px;
         background: #334F6c;
         border: none;
         outline: none;
         color: #fff;
     }

     footer .subscribe a {
         margin-top: 20px;
         color: rgb(21, 21, 100);
         background-color: #fff;
     }

     footer .copyright p {
         color: #fff;
         font-size: 0.9rem;
         align-items: center;
     }

     footer .copyright .pro-links {
         margin-top: 10px;
     }

     footer .footer-col {
         padding-bottom: 20px;
     }

     footer .subscribe a.yellow {
         font-size: 0.9rem;
     }

     /*About*/

     #about-home {
        height: 30vh;
        padding: 0px;
      }
      #about-container {
        display: flex;
        /* padding: 8vw 8vw 2vw 8vw;*/
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }

    #about-container .about-text {
        width: 100%;
    }

    #about-container .about-text p {
        text-align: justify;
    }

    #about-container .about-img {
        width: 100%;
        padding: 5px;
    }

    #about-container img {
        width: 40vh;
        height: 25vh;
    }


    /*Services*/

    #services-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 8vw;
    }

    #services-container .services {
        width: 100%;
    }


    #services-container .cate {
        width: 100%;
    }



     /*contact*/
     #contact {
         padding: 8vw 4vw;
         /*4vw*/
         flex-direction: column;
         align-items: flex-start;
         justify-content: flex-start;
     }

     #contact .getin {
         width: 100%;
         margin-bottom: 30px;
     }

     #contact .form {
         width: 100%;
         padding: 40px 30px;
     }

     #contact .form .form-row {
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         width: 100%;
     }

     #contact .form .form-row input {
         width: 100%;
     }


     /*Projects*/
 }