@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
    overflow: auto;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.container {
    max-width: 1190px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/*----Header-------

header {
    position: fixed;
    background-color: #ffffff;
    margin-top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 10;
}

header .brand-name a {
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: black;
}

header .brand-name a:hover {
    color: #2f84f5;
}

header .row {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
*/

/*header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .navbar ul li {
    display: inline-block;
    margin-left: 55px;
}

header .navbar ul li a {
    font-size: 15px;
    text-decoration: none;
    line-height: 50px;
    color: #000000;
    display: block;
    font-weight: 500;
    position: relative;
}


header .navbar ul li a:hover {
    color: #2f84f5;
}

header .navbar .cv-btn {
    padding-top: 1px;
    margin-left: 40px;
}

header .navbar .cv-btn a {
    border-radius: 4px;
    background-color: #270cf5;
    color: #ffffff;
    border: 1px solid;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

header .cv-btn a:focus {
    box-shadow: none;
}

header .navbar .cv-btn a i {
    margin-right: 5px;
}

header .cv-btn a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: all 0.5s ease;
}

header .cv-btn a:hover::before {
    width: 100%;
}


@media(min-width: 767 px) {
    header {
        padding: 15px;
        position: fixed;
        background-color: #ffffff;
        border: none;
        border-bottom: 1px solid #eeeeee;
    }

    header .brand-name a {
        color: #000000;
    }

    .ham-burger .fa {
        display: inline-block;
    }

    .navbar {
        position: absolute;
        background-color: #ffffff;
        width: 100%;
        left: 0px;
        top: 81px;
        padding: 15px;
        border-top: 1px solid #eeeeee;
        display: none;
    }

    .navbar.show {
        
        display: block;
    }

    header .navbar ul li {
        display: block;
        margin-left: 0;
    }

    header .navbar ul li a {
        line-height: 55px;
        color: #000000;
    }

    header .navbar ul li a::before {
        background-color: #000000;
    }*/


/*----Home secton---*/

.home {
    padding: 250px 0 200px;
}

.home .home-content p {
    font-size: 55px;
    color: #000000;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
}

.home .home-content h6 {
    color: #222222;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 28px;
}

.home .cv-btn a {
    border-radius: 4px;
    background-color: #270cf5;
    color: #ffffff;
    border: 1px solid;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.home .cv-btn a:focus {
    box-shadow: none;
}

.home .cv-btn a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: all 0.5s ease;
}

.home .cv-btn a:hover::before {
    width: 100%;
}

.home .home-img {
    position: relative;
}

.home .home-img img {
    max-width: 500px;
    width: 100%;
    position: absolute;
    left: 150px;
    top: -50px;
}

/* Services Section
--------------------------------*/

#services {
    padding: 200px 0 200px;
    /* box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
}

#services h2 {
    color: #000;
    text-align: center;
    padding-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
}

#services .box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 40px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 0, 0.1);
    transition: all 0.5s ease-in-out;
}

#services .box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

#services .icon {
    position: absolute;
    left: 0px;
    top: calc(50% - 32px);
}

#services .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

#services .title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-decoration: none;
}

#services .title a {
    color: #111;
    text-decoration: none;
}

#services .box:hover .title a {
    color: #007bff;
}

#services .description {
    font-size: 14px;
    margin-left: 50px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
}

/*career section*/

.career-section {
    background: linear-gradient(to right, #888, blue);
    padding: 250px 0 200px;
    margin-top: 130px !important;
}

.register-left {
    text-align: center;
    padding: 30px;
    color: #fff;
}

.register-right {
    padding: 20px 20px 0;
}

.register-left .btn-primary {
    border-radius: 4px;
    border: none;
    font-weight: 600;
    background: #f8f8f8;
    padding: 10px;
    width: 120px;
    color: #555;
    transition: all .8s ease;
}

.register-left .btn-primary:hover {
    background: linear-gradient(to right, #888, blue);
    color: #fff;
}

.register-left img {
    width: 80px;
    margin-top: 60px;
    margin-bottom: 18px;
    animation: mover 1s infinite alternate;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.register-right {
    border: none;
    background: #f8f8f8;
    padding: 50px;
    border-top-left-radius: 12% 50%;
    border-bottom-left-radius: 12% 50%;
}

.register-right h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}

.register-form {
    padding: 30px;
}

.register-right .btn-primary {
    float: right;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    background: #000;
    padding: 10px;
    width: 120px;
    color: #fff;
    transition: all .8s ease;
}

.register-right .btn-primary:hover {
    background: linear-gradient(to right, #888, blue);
    color: #000;
}

/*end career section*/


/*skill section*/

.skill-set {
    background: #333;
    padding: 100px 0 200px;
}

.inner {
    padding-top: 20px;
}

.header {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 25px;
    color: #fff;
    padding: 1rem;
    position: relative;
}

.header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    background-color: #2ecc71;
    border-radius: 2px;
}

.inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-gap: 1rem;
    padding: 1rem 80px;
    font-size: 1.2rem;
}

.skill-box {
    padding: 1rem;
    color: #ddd;
    cursor: pointer;
}

.skill-box:hover > .skill-title:after,
.skill-box:hover > .skill-title:before {
    width: 35px;
}

.skill-box:hover .img {
    transform: translateY(-10px);
}

.skill-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.skill-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 4px;
    border-radius: 2px 0 0 2px;
    background-color: #2ecc71;
    transition: .5s;
}

.skill-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 0 2px 2px 0;
    background-color: #2ecc71;
    transition: .5s;
}

.img {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 45px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 90px;
    /*    background: rgba(100,100,100,0.5);*/
    border-radius: 45px 0 0 45px;
}

.skill-title h3 {
    color: #fff;
    margin-top: 0.5rem;

}

.skill-icon {
    width: 50px;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 50px;
    }
}

@media screen and (max-width: 650px) {
    .inner {
        grid-template-columns: 1fr;
        padding: 2rem 50px;
    }
}


/*end skill-section*/

/*contact-section*/

.contact-area {
    min-height: 100vh;
    background-image: url("images/2.jpg");
    background-size: cover;
    background-position: center;
    padding: 15px;
}

.contact-area {
    padding: 40px 0;
}

.contact-area h1 {
    padding-top: 300px;
    letter-spacing: 2px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 700;
}

.border {
    width: 18%;
    height: 8px;
    padding: 1px;
    background: linear-gradient(109.6deg, rgba(101, 58, 150, 1) 29.9%, rgba(168, 141, 194, 1) 99.9%);
    margin: 10px auto;
}

.contact-form {
    max-width: 800px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
}

.contact-form-text {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
    border-radius: 5px;
    background: #111;
    padding: 20px 40px;
    outline: none;
    color: #fff;
    transition: 0.5s;
}

.cv-btn1 a {
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 12px 25px;
    font-weight: 400;
    float: right;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .8s ease;
}

.contact-form-text:hover {
    box-shadow: 0 0 10px 4px #dbdbdb;
}

.cv-btn1 a:hover {
    background: linear-gradient(to right, #888, blue);
    color: #fff;
}




/*end-contact-section*/

