body {
    font-family: "Jost", sans-serif;
    background-color: #f4f4f9;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

/* Index page css start */

#banner_background {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

#background_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

#about-us {
    margin-top: 80px;
}

#left {
    padding-left: 30px;
}

#border_radius {
    border-radius: 10px;
}

.sub-content {
    color: #5c30fd;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
    padding: 6px 12px;
    border-radius: 10px;
}

.sub-content img {
    margin-right: 10px;
    animation: icon-animation 1.5s ease-in-out infinite;
}

h2, h3, p, span {
    font-family: "Jost", sans-serif;
}

.about_title {
    font-size: 40px;
}

.about_text {
    font-size: 18px;
    margin-top: 15px;
}

@keyframes icon-animation {
    0% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.about_button {
    background-color: #5c30fd;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 18px;
    transition: .5s;
    font-family: "Jost", sans-serif;
}

.about_button:hover {
    background-color: #101828;
}

#work {
    background-image: url('assets/img/services_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding: 80px 0px 80px 0px;
}

.works_title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
}

.work_card {
    padding: 20px 25px 10px 25px;
    border: 1px solid #fff;
    border-radius: 30px 0px 30px 0px;
    transition: .7s;
}

.work_card:hover {
    border-radius: 0px 30px 0px 30px;
}

.card_title {
    color: #fff;
    text-align: center;
    font-family: "Jost", sans-serif;
}

.card_para {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

#pricing {
    background-image: url('assets/img/plan-background.jpg');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 120px 0px 80px 0px;
}

#div_background {
    background-image: url('assets/img/pricing-shape.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.plan_title {
    font-size: 48px;
    color: #101828;
    margin-bottom: 30px;
}

.btn-toggle {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-toggle .btn {
    width: 150px;
    border-radius: 30px;
}

.plan_card {
    padding: 50px 45px;
    border-radius: 30px 0px 30px 0px;
    transition: .7s;
    /* background-color: #5c30fd1a; */
    background-color: transparent;
    border: 1.2px solid #1018281a;
    color: #101828;
    text-align: center;
}

.plan_card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.plan_card span {
    font-size: 15px;
}

.plan_card:hover {
    border-radius: 0px 30px 0px 30px;
    background-color: #101828;
    color: #fff;
}

.plan_card:hover #plan_para,
.plan_card:hover {
    color: #fff;
}

.basic_title {
    color: #5c30fd;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Jost", sans-serif;
}

.plan_features {
    margin-top: 15px;
}

#plan_para {
    color: #101828;
    font-size: 18px;
}

.plan_border {
    border-top: 1px dotted #b6b6b6;
    margin-top: 25px;
    padding-bottom: 25px;
}

.plan_button {
    background-color: #5c30fd;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 18px;
    transition: .5s;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    cursor: pointer;
}

.plan_button:hover {
    background-color: #fff;
    color: #101828;
    font-weight: 500;
}

#contact-us {
    margin-top: 100px;
    margin-bottom: 50px;
}

#envelope {
    background-color: #5c30fd;
    border-radius: 50%;
    color: #fff;
    padding: 12px;
}

#phone {
    background-color: #5c30fd;
    border-radius: 50%;
    color: #fff;
    padding: 12px;
}

.email {
    text-decoration: none;
    font-size: 18px;
    color: #101828;
    transition: .5s;
}

.email:hover {
    color: #5c30fd;
}

.contact_para {
    font-size: 20px;
    font-weight: 500;
}

.send_message {
    font-weight: 600;
    margin-bottom: 20px;
}

#form-control {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    padding: 16px 20px;
    border-radius: 8px;
    color: #696969;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
}

#visitorCount {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: right;
}

/* Index page css end */

/* Small devices (phones, up to 480px) */
@media only screen and (max-width: 480px) {
    #banner_background {
        height: 56vh !important;
    }

    #top {
        margin-top: 40px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    #left {
        padding-left: 15px;
        margin-top: 45px; 
    }

    .about_title {
        font-size: 30px
    }

    #border_radius {
        margin-top: 30px;
    }

    .works_title {
        font-size: 35px;
    }

    .work_card {
        margin-bottom: 30px;
    }

    .plan_title {
        font-size: 37px;
    }

    .plan_card {
        margin-bottom: 30px;
    }

    .send_message {
        margin-top: 40px;
    }
}

/* Mobile devices (phones, up to 767px) */
@media only screen and (max-width: 767px) {
    .about_title {
        font-size: 30px;
    }
}

/* Tablets (768px to 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #banner_background {
        height: 30vh !important;
    }

    .content h1 {
        font-size: 2.6rem;
    }

    .content p {
        font-size: 1.3rem;
    }
    
    .about_title {
        font-size: 30px;
    }

    .card_title {
        font-size: 20px;
    }

    .card_para {
        font-size: 16px;
    }

    .works_title {
        font-size: 40px;
    }
}

/* Tablets (1024px to 1366px) */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .header .menu>ul>li {
	margin-left: 50px !important;
    }

    .header .menu>ul>li>a {
	font-size: 17px !important;
    }

    .plan_card h3 {
	font-size: 24px;
    }
    
    .plan_card h6 {
	font-size: 1.08rem;
    }

    .plan_button {
	padding: 13px 20px;
    }

    .basic_title {
	font-size: 25px !important;
    }
}