* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: #080808; */
    background: black;
    color: #fff;
    width: 100%;
    height: 100vh;
}

.logo {
    height: 70px;
    margin: 15px;
    margin-left: 45px;
}

.back {
    display: flex;
    justify-content: flex-end;
    float: right;
    position: absolute;
    top: 130px;
    right: 30px;
}

.contaier {
    width: 100%;
}

.img {
    width: 300px;
    float: left;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav ul {
    display: flex;
    margin: 30px;

}

.nav ul li {

    padding: 15px;
    cursor: pointer;
    list-style: none;

}

.nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.main {
    margin-top: 130px;
    margin-left: 45px;
}

.main p {
    font-size: 30px;
    margin-bottom: 10px;
    color: chartreuse;
}

.main h1 {
    font-size: 60px;
}

.main h1 span {
    color: orangered;
}

.content {
    margin-top: 200px;
    margin-left: 45px;
    display: flex;
    padding-top: 20px;
    justify-content: space-evenly;
   
}

.col {
    flex-basis: 33%;
}

.row {
    flex-basis: 60%;
}

.he {
    
    /* top: 30px; */
    margin-top: 30px;
    width: 260px;
    border-radius: 30px;
}


.row h1 {
    padding-top: 20px;
    color: #ff004f;
    margin-bottom: 20px;
}

.tab-tittle {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    width: 60%;
    font-size: 18px;
}

.tab-links {
    display: flex;
    color: rgb(20, 20, 220);
    cursor: pointer;
    position: relative;

}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.8s;

}

.tab-links.active-link::after {
    width: 60%;
}

.tab-contents span {
    color: orangered;
}

.tab-contents {
    display: none;
}

.active-tab {
    display: block;
}

.services {
    margin-left: 45px;
    margin-right: 45px;
}

.services h1 {
    margin-top: 30px;
    color: #ff004f;
    display: flex;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.services-list div h2 {
    margin-bottom: 15px;
}

.services-list div {
    border-radius: 10px;
    padding: 20px;
    background: #262626;
    transition: background 0.5s, transform 0.5s;
}

.services-list div:hover {
    background: #ff004f;
    transform: translateY(-10px);
}

.container .red {
    flex-basis: 30%;
}

.contact-right .row {
    flex-basis: 60%;
}

.sub-title {
    color: #ff004f;
}

.red {
    display: flex;
    justify-content: space-between;
}

.contact-left {
    flex-basis: 30%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
}

.social-icons {
    margin-top: 30px;
    display: flex;

}

.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color:#ababab ;
    display: inline-block;
}
a {
    display: block;
}

a img {
    /* text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    background-color:#ff004f;
    display:flex;
    width: 30px;
    height: 28px;
    margin: 5px; */
    width: 29px;
    height: 32px;
    display: block;

    margin: 5px;
    background-color: rgba(234, 219, 219, 0.886);
    color: #ff004f;
    border-radius: 5px;

}

.btn {
    display: inline-block;
    background: #ff004f;
    margin-bottom: 10px;
    color: rgba(234, 219, 219, 0.886);
    padding: 11px 25px;
    border: 0;
    border-radius: 10px;
}

.contact-right {
    width: 100%;

}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}

.contact {
    margin-left: 45px;
    margin-right: 45px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}

.fas {
    display: none;
}
.col2{
    display: none;
}






@media only screen and (max-width:600px) {
    body {
        width: 100%;
    }

    .nav {
        display: block;
        width: 100%;
    }

    .logo {
        height: 45px;
        margin: 2px;
       

    }

    .img {
        width: 125px;
    }

    .main {
        margin-top: 80px;
        margin-left: 20px;
    }

    .main p {
        font-size: 15px;
    }

    .main h1 {
        font-size: 20px;
    }
    .btn{
        margin-bottom: 0px;
    }

    .nav ul {
        margin: 0px;
        display: block;

    }

    .nav ul li {
        /* padding: 8px; */
        display: block;
    }

    .content {
        display: block;
        margin-top: 5px;
    }

    /* .he {
        display: none;
    
        padding-left: 0;
    } */
    .col2{
        display: block;
        width: 310px;
    }
    .col{
       display: none;
    }

   
    .tab-tittle p {
        margin: 8px 8px 8px 0;
        font-weight: 700;
        color:#ff004f;
    }

    .im2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .show {
        display: none;
        display: block;
    }

    .red {
        display: block;
    }
 

    .fas {
        display: block;
        font-size: 24px;

    }

    .er {
        position: fixed;
        top: 0;
        right: -310px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        padding-left: 20px;
        background-color: #ff004f;
        z-index: 2;
        transition: right 0.5s;
    }

    .er li {
        /* padding: 17px; */
        display: block;
        margin: 25px;
    }

    .er .x {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .e {
        position: absolute;
        top: 16px;
        
        right: 14px;
    }
    /* .e a{
        height: ;: 30px;
    } */
     .e img{
        width: 30px;
        z-index: 5;
     }

    .yrr {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content {
        margin-left: 26px;
        margin-right: 20px;
    }

    .container {
        /* margin-left: 20px;
        margin-right: 20px; */
    }

    .services {
        margin-left: 20px;
        margin-right: 20px;
    }

    .contact {
        margin-left: 8px;
        margin-right: 8px;
    }
    .contact p{
        margin-left: 7px;
    }

    .tab-contents li {
        list-style: none;
    }

    /* .tab-links::after{
        margin: 8px;
    } */
    .back {
        position: absolute;
        top: 50px;
        right: 8px;
    }
    .tp{
        width: 30px;
    }

    a img {
        width: 27px;
        height: 27px;
        display: block;
        margin: 7px;
        background-color: rgba(234, 219, 219, 0.886);
        color: #ff004f;
        border-radius: 5px;
        /* margin: 5px; */
        /* border-radius: 9px; */
    }

   


    .social-icons {
        display: flex;
    }
    .btn:hover{
        background-color:#231117;
        
    }

    .cros {
        width: 22px;
    }
    #msg{
        display: flex;
        justify-content: center;
    }
}

#msg{
    color:#61b752;
    margin-top: 20px;
    
}