.heading h1{
    text-align: center;
    font-size: 70px;
    color: var(---black);
}
/*Contact Us*/
.con {
    position: relative;
    margin-top: 150px;
}

.con .container {
    backdrop-filter: blur(10px);
    border: 2px solid var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.123);
    height: 500px;
    width: 1400px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
}

.con #fig {
    position: absolute;
    right: 400px;
    bottom: -60px;
    z-index: -7;
}

.con #ai {
    position: absolute;
    left: 350px;
    top: -20px;
    z-index: -7;
}

.con #ps {
    position: absolute;
    left: 350px;
    bottom: -40px;
    z-index: -7;
}

.con #wp {
    position: absolute;
    right: 350px;
    top: -90px;
    z-index: -7;
}

.con .container h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 700;
}

.con .container p {
    font-size: 20px;
    color: var(---grey);
    font-weight: 500;
    line-height: 40px;
    margin: 30px 0px;
}

.con .container button {
    width: 180px;
    height: 70px;
    background-color: var(---black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.con .container button:hover {
    box-shadow: 0px 0px 30px #f59d1996;
    color: var(---white);
}

.con .container button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(---red);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.con .container button::before {
    transform: scaleX(0);
}

.con .container button:hover::before {
    transform: scaleX(1);
    border-radius: 10px;
}

/*Contact Us*/

/*Portfolio slider*/
.portfolio-slider {
    margin-top: 150px;
}

.portfolio-slider .port-slider {
    margin-top: 100px;
}

.portfolio-slider .port-slider .port-box {
    cursor: grab;
}

.portfolio-slider .port-slider .port-box img {
    width: 100%;
}

.portfolio-slider .port-slider2 {
    margin-top: 50px;
}

.portfolio-slider .port-slider2 .port-box img {
    width: 100%;
}

/*Portfolio slider*/

/*Portfolio Page*/
.port-hero {
    background-color: transparent;
}

.port-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.port-hero .container .hero-port-slider {
    width: 800px;
    margin-right: 0px;
}

.port-hero .container .hero-port-slider .port-slider-box {
    background-color: transparent;
    background-position: center;
    background-size: cover;
}

.port-hero .container .hero-port-slider .port-slider-box img {
    border-radius: 20px;
    display: block;
}

.port-hero .container .port-text h1 {
    font-size: 70px;
    color: var(---black);
    font-weight: 400;
}

.port-hero .container .port-text h1 b {
    color: var(---red);
}

.port-hero .container .port-text p {
    font-size: 18px;
    line-height: 40px;
    color: var(---grey);
    font-weight: 600;
    margin-top: 30px;
}

/*Portfolio Page*/

/*Categories*/
.categories {
    margin-top: 150px;
}

.categories .categories-slider {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.categories .categories-slider .categories-box {
    width: 350px;
    height: 130px;
    background-color: var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 10px #2222221e;
}

.categories .categories-slider .categories-box h1 {
    font-size: 25px;
    font-weight: 600;
}

.categories .categories-slider .categories-box:hover {
    background-color: var(---red);
    color: var(---white);
    border: 2px solid var(---white);
}

.categories .categories-slider .categories-box.active {
    background-color: var(---red);
    color: var(---white);
    border: 2px solid var(---white);
}

.categories .categories-slider .swiper-slide-button {
    color: var(---red);
}

.categories .row .column {
    margin-top: 20px;
}

.categories .row .column .content {
    width: 520px;
    height: 440px;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(---white);
    box-shadow: 0px 0px 10px #2222221e;
    cursor: pointer;
    position: relative;
}

.categories .row .column #video-box {
    width: 390px;
    height: 690px;
    margin: 0px auto;
}

.categories .row .column .content img {
    width: 100%;
}

.categories .row .column .content .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.678));
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    align-items: center;
    justify-content: left;
}

.categories .row .column .content .overlay .text {
    color: var(---white);
    font-size: 30px;
    font-weight: 600;
    margin-left: 20px;
}

.categories .row .column .content:hover .overlay {
    height: 30%;
}
.categories .row{
    margin-top: 50px;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    display: none;
    /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
    content: " ";
    display: table;
    clear: both;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

.categories #video-box {
    background-color: black;
}

.row {
    position: relative;
}

/*Categories*/

/*--------------Blog Posting page------------*/
.blogposter .container img {
    width: 100%;
}

.blogposter .container .text h1 {
    font-size: 50px;
    font-weight: 500;
    margin-top: 30px;
}

.blogposter .container .text {
    margin-top: 50px;
}

.blogposter .container .text p {
    font-size: 20px;
    color: var(--lightgrey);
    font-weight: 500;
    line-height: 50px;
}

.blogposter .container #imageposter {
    margin-top: 30px;
}

/*--------------Blog Posting page------------*/


/* media quries */

@media (max-width:1880px) {
    .hero .hero-slider .box .image {
        width: 700px;
    }

    .hero .hero-slider .box .image #big-pic {
        width: 100%;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 250px;
        height: 400px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 80px;
    }

    .ser .slider .slide p {
        color: var(---darkgrey);
        font-size: 18px;
    }

    .all-service .container .col-1 .slide {
        width: 470px;
    }

    .all-service .container .col-1 .slide p {
        color: var(---darkgrey);
        font-size: 18px;
        font-weight: 500;
        line-height: 40px;
        margin-top: 20px;
    }

    .port-hero .container .hero-port-slider {
        width: 700px;
        margin-right: 0px;
    }

    .port-hero .container .hero-port-slider .port-slider-box {
        background-color: transparent;
        background-position: center;
        background-size: cover;
        width: 100%;
    }

    .port-hero .container .hero-port-slider .port-slider-box img {
        border-radius: 20px;
        display: block;
        width: 100%;
    }

    .categories .row .column .content {
        width: 480px;
        height: 440px;
        margin: 0px auto;
    }

    .ceo-profile .container .ceo-image img {
        border-radius: 20px;
        width: 100%;
    }

    .ceo-profile .container .ceo-image {
        width: 700px;
    }
}

@media (max-width:1835px) {
    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 550px;
        height: 150px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
}

@media (max-width:1772px) {
    section {
        padding: 10px 100px;
    }
}

@media (max-width:1680px) {
    section {
        padding: 10px 80px;
    }

    .review .review-slider .box .data p {
        font-size: 16px;
        line-height: 40px;
        margin-top: 10px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 20px;
    }

    .categories .row .column .content {
        width: 440px;
        height: 400px;
    }

    .ceo-profile .container .ceo-image {
        width: 650px;
    }

    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 520px;
        height: 150px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 880px;
        height: 830px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }
}

@media (max-width:1590px) {
    section {
        padding: 10px 60px;
    }

    .about .container .about-image {
        width: 650px;
    }

    .about .container .about-image img {
        width: 100%;
    }

    .review .review-slider .box .data p {
        font-size: 14px;
        line-height: 40px;
        margin-top: 10px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 18px;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 12px;
    }

    .review .review-slider .box .data #stars {
        margin-top: 15px;
        width: 170px;
    }

    .all-service .container .col-1 .slide {
        width: 450px;
    }

    .port-hero .container .hero-port-slider {
        width: 650px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 16px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .team-member .container .team-box {
        width: 450px;
    }

    .ceo-profile .container .ceo-image {
        width: 600px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 850px;
        height: 830px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 780px;
        height: 116px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 35px 0px;
        font-size: 23px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }
}

@media (max-width:1550px) {
    .hero .hero-slider .box .text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 18px;
        font-weight: 600;
        line-height: 35px;
        margin: 30px 0px;
    }

    .con .container {
        width: 1200px;
    }

    .ceo-profile .container .ceo-image {
        width: 580px;
    }
}

@media (max-width:1485px) {
    .all-service .container .col-1 .slide {
        width: 420px;
    }

    .all-service .container .col-1 .slide p {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 500;
        line-height: 40px;
        margin-top: 20px;
    }

    .categories .categories-slider .categories-box h1 {
        font-size: 20px;
    }

    .categories .categories-slider .categories-box {
        width: 300px;
        height: 100px;
        background-color: var(---white);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 15px;
        cursor: pointer;
        box-shadow: 0px 0px 10px #2222221e;
    }

    .team-member .container .team-box {
        width: 400px;
    }

    .ceo-profile .container .ceo-image {
        width: 500px;
    }

    .contact-form .container .info .info-box .data {
        display: flex;
        align-items: center;
        margin-left: 15px;
    }

    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 450px;
        height: 150px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 780px;
        height: 830px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 700px;
        height: 116px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 35px 0px;
        font-size: 23px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .thank #ps {
        position: absolute;
        left: 5%;
        animation: hithere 3s ease infinite;
    }

    .thank #wp {
        position: absolute;
        right: 5%;
        backface-visibility: visible !important;
        animation: flip 2s ease infinite;
    }
}

@media (max-width:1450px) {
    .hero .hero-slider .box .image {
        width: 600px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 200px;
        height: 350px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 70px;
        right: 100px;
        bottom: 100px;
    }

    .ser .slider .slide p {
        color: var(---darkgrey);
        font-size: 16px;
    }

    .ser .slider .slide h2 {
        font-size: 25px;
        color: var(---black);
        margin-top: 20px;
    }

    .about .container .about-text p {
        font-size: 18px;
        line-height: 50px;
        margin: 20px 0px;
    }

    .categories .row .column .content {
        width: 400px;
        height: 360px;
    }

}

@media (max-width:1390px) {
    section {
        padding: 10px 40px;
    }

    .hero .hero-slider .box .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 600;
        line-height: 35px;
        margin: 20px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 170px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .hero .hero-slider .box .text button:hover {
        box-shadow: 0px 0px 20px #d02d3594;
        color: var(---white);
    }

    .advantages .container .counter-box h5 {
        font-size: 25px;
        color: var(--lightgray);
        font-weight: 500;
        line-height: 30px;
    }

    .advantages .container .counter-box .counter {
        font-size: 60px;
        font-weight: 600;
        color: var(---black);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ser .slider .slide p {
        color: var(---darkgrey);
        font-size: 14px;
        line-height: 30px;
    }

    .ser .slider .slide h2 {
        font-size: 25px;
        color: var(---black);
        margin-top: 20px;
    }

    .about .container .about-image {
        width: 600px;
    }

    .about .container .about-text #para-2 {
        margin-top: 0px;
    }

    .about .container .about-text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .review .review-slider .box .data {
        width: 100%;
        height: 100%;
        padding: 10px 0px;
        padding-left: 10px;
    }

    .review .review-slider .box .data .top .image img {
        width: 80px;
        height: 80px;
    }

    .review .review-slider .box {
        border-radius: 15px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 16px;
        color: var(---black);
        font-weight: 600;
    }

    .review .review-slider .box .data .top .google {
        margin-right: 10px;
    }

    .review .review-slider .box .data p {
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide {
        width: 390px;
    }

    .all-service .container .col-1 .slide p {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 500;
        line-height: 35px;
        margin-top: 20px;
    }

    .all-service .container .col-1 .slide h2 {
        font-size: 25px;
        color: var(---black);
        margin-top: 20px;
    }

    .port-hero .container .hero-port-slider {
        width: 600px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 14px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .team-member .container .team-box {
        width: 380px;
    }

    .ceo-profile .container .text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 18px;
        font-weight: 500;
        line-height: 50px;
    }

    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 450px;
        height: 150px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 700px;
        height: 790px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 650px;
        height: 116px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 23px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 400px;
        height: 120px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .form-box .data button {
        width: 240px;
        height: 80px;
        background: var(---grey);
        font-size: 22px;
        color: var(---black);
        font-weight: 500;
        cursor: pointer;
    }

    .contact-form .form-box .contact-btn {
        display: flex;
        align-items: center;
        margin-top: 30px;
    }
}

@media (max-width:1280px) {

    section {
        padding: 10px 20px;
    }

    /*Section and Container Spacing*/

    .ser {
        margin-top: 130px;
    }

    .about {
        margin-top: 130px;
    }

    .review {
        margin-top: 130px;
    }

    .team {
        margin-top: 130px;
    }


    .footer {
        margin-top: 130px;
    }

    .all-service {
        margin-top: 130px;
    }

    .con {
        margin-top: 130px;
    }

    .portfolio-slider {
        margin-top: 130px;
    }

    .categories {
        margin-top: 130px;
    }

    .team-member {
        margin-top: 130px;
    }

    .ceo-profile {
        margin-top: 130px;
    }

    .brand{
        margin-bottom: 130px;
    }

    /*Section and Container Spacing*/

    .header .container .navbar .data li a  {
        padding: 57px 16px;
        color: var(---black);
        font-weight: 600;
        font-size: 18px;
    }

    .header .container .left .navbar {
        background-color: transparent;
        margin-left: 20px;
    }

    .about .container .about-image {
        width: 550px;
    }

    .about .container .about-text p {
        font-size: 16px;
        color: var(---darkgrey);
        line-height: 50px;
        font-weight: 600;
        margin: 25px 0px;
    }

    .team .team-slider .team-box .team-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .team .team-slider .team-box .team-text p {
        color: var(---red);
        font-size: 16px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .team .team-slider .team-box .team-text button {
        width: 150px;
        height: 60px;
        background-color: var(---lightgray);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        margin-top: 10px;
        position: relative;
    }

    .all-service .container .col-1 .slide {
        width: 370px;
    }

    .service-hero .container .text h1 {
        font-size: 60px;
    }

    .service-hero .container .text #hero-para {
        color: var(---darkgrey);
        font-size: 18px;
        font-weight: 600;
        line-height: 40px;
        margin: 20px 0px;
    }

    .service-hero .container {
        height: auto;
    }

    .con .container {
        width: 100%;
    }

    .con #fig {
        position: absolute;
        right: 100px;
        bottom: -60px;
        z-index: -7;
    }

    .con #ps {
        position: absolute;
        left: 100px;
        bottom: -40px;
        z-index: -7;
    }

    .con #wp {
        position: absolute;
        right: 100px;
        top: -90px;
        z-index: -7;
    }

    .con #ai {
        position: absolute;
        left: 100px;
        top: -20px;
        z-index: -7;
    }

    .port-hero .container .hero-port-slider {
        width: 550px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 14px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .row .column .content {
        width: 360px;
        height: 320px;
    }

    .team-member .container .team-box {
        width: 340px;
        border-radius: 10px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 16px;
        font-weight: 500;
        margin-top: 10px;
    }

    .team-member .container .team-box img {
        border-radius: 10px 10px 0px 0px;
        width: 100%;
    }

    .ceo-profile .container .text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 500;
        line-height: 50px;
    }

    .ceo-profile .container .ceo-image {
        width: 520px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 30px;
        color: var(---red);
        font-weight: 500;
        margin: 15px 0px;
    }

    .team-member .container #team-col-2 {
        margin-top: 30px;
    }
    .categories .row .column #video-box {
        width: 340px;
        height: auto;
    }
    .header .container .navbar .data #service-subpage #downbtn{
        font-size: 16px;
    }
}

@media (max-width:1165px) {
    .all-service .container .col-1 .slide {
        width: 350px;
    }
    .website-data .container h1{
        font-size: 60px;
        color: var(---black);
    }
    .website-data .container p{
        font-size: 16px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 50px;
        margin-top: 30px;
    }
}

@media (max-width:1200px) {
    .hero .hero-slider .box .image {
        width: 550px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 160px;
        height: 320px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 60px;
        right: 100px;
        bottom: 100px;
    }

    .ceo-profile .container .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 500;
        line-height: 40px;
    }

    .ceo-profile .container .ceo-image {
        width: 520px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 25px;
        color: var(---red);
        font-weight: 500;
        margin: 15px 0px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 650px;
        height: 790px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 600px;
        height: 116px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 23px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 20px;
        width: 370px;
        height: 120px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .info .info-box .data .text p {
        font-size: 14px;
        color: var(---darkgrey);
        font-weight: 500;
    }

    .contact-form .container .info .info-box .data .info-image {
        background: var(---red);
        width: 60px;
        height: 60px;
    }

    .categories .row .column .content .overlay .text {
        font-size: 25px;
    }

}

@media (max-width:1120px) {
    .hero .hero-slider .box .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 600;
        line-height: 35px;
        margin: 20px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 150px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .ser .slider .slide p {
        color: var(---darkgrey);
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }

    .ser .slider .slide h2 {
        font-size: 20px;
        color: var(---black);
        margin-top: 10px;
    }

    .ser .slider .slide #icon-box {
        width: 100px;
    }

    .ser .slider .slide button {
        margin-top: 10px;
    }

    .ser .slider .slide #photoshop {
        width: 80px;
    }

    .ser .slider .slide #figma {
        width: 80px;
    }

    .ser .slider .slide #ai {
        width: 80px;
    }

    .about .container .about-image {
        width: 500px;
    }

    .about .container .about-text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text p {
        font-size: 16px;
        line-height: 40px;
        margin: 20px 0px;
    }

    .about .container .about-text button {
        width: 150px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .about .container .about-text .button2 #learn {
        margin-left: 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .all-service .container .col-1 .slide {
        width: 330px;
    }

    .all-service .container .col-1 .slide p {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 500;
        line-height: 25px;
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide h2 {
        font-size: 20px;
        color: var(---black);
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide img {
        width: 100px;
        height: 100px;
    }

    .port-hero .container .hero-port-slider {
        width: 500px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 12px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .row .column .content {
        width: 320px;
        height: 280px;
    }

    .ceo-profile .container .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 500;
        line-height: 40px;
    }

    .ceo-profile .container .ceo-image {
        width: 480px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 25px;
        color: var(---red);
        font-weight: 500;
        margin: 15px 0px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 10px 15px;
    }

    /*Section and Container Spacing*/

    .ser {
        margin-top: 100px;
    }

    .about {
        margin-top: 100px;
    }

    .review {
        margin-top: 100px;
    }

    .review .review-slider {
        margin-top: 90px;
    }

    .team {
        margin-top: 100px;
    }

    .team .team-slider {
        padding: 50px 0px;
        padding-bottom: 70px;
    }

    .footer {
        margin-top: 100px;
    }

    .all-service {
        margin-top: 100px;
    }

    .con {
        margin-top: 100px;
    }

    .portfolio-slider {
        margin-top: 100px;
    }

    .portfolio-slider .port-slider {
        margin-top: 50px;
    }

    .categories {
        margin-top: 100px;
    }

    .categories .categories-slider {
        margin-top: 90px;

    }

    .team-member {
        margin-top: 100px;
    }

    .ceo-profile {
        margin-top: 100px;
    }
    .brand{
        margin-top: 100px;
        margin-bottom: 100px;
    }

    /*Section and Container Spacing*/

    .hero .hero-slider .box .image {
        width: 500px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 150px;
        height: 280px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 60px;
        right: 100px;
        bottom: 100px;
    }

    .hero .hero-slider .box .image:hover #mouse-pic {
        transform: translateX(30px);
    }

    .advantages .container .counter-box h5 {
        font-size: 20px;
        color: var(--lightgray);
        font-weight: 500;
        line-height: 30px;
        width: 200px;
        margin-top: 10px;
    }

    .advantages .container .counter-box .counter {
        font-size: 50px;
        font-weight: 600;
        color: var(---black);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about .container .about-image {
        width: 500px;
    }

    .about .container .about-text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text p {
        font-size: 10px;
        line-height: 35px;
        margin: 15px 0px;
        width: 400px;
    }

    .all-service .container .col-1 .slide {
        width: 310px;
    }

    .port-hero .container .hero-port-slider {
        width: 450px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 45px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 11px;
        line-height: 30px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .row .column .content {
        width: 280px;
        height: 240px;
        border-radius: 20px;
    }

    .team-member .container .team-box {
        width: 300px;
        border-radius: 10px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 16px;
        font-weight: 500;
        margin-top: 10px;
    }

    .ceo-profile .container .text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .ceo-profile .container .ceo-image {
        width: 400px;
    }

    .ceo-profile .container .text {
        width: 500px;
    }

    .ceo-profile .container {
        justify-content: space-around;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 550px;
        height: 110px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 23px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .footer .last {
        width: 100%;
        margin: 10px auto;
    }

    .service-hero .container .text {
        width: 100%;
    }

    .service-hero .container .text #hero-para {
        font-size: 20px;
        width: 800px;
        margin: 30px auto;
    }
    .categories .row .column #video-box {
        width: 300px;
        height: 540px;
    }
    .website-data .container h1{
        font-size: 50px;
        color: var(---black);
    }
    .website-data .container p{
        font-size: 14px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 50px;
        margin-top: 30px;
    }
}

@media (max-width:1024px) {
    .contact-form .container .info .info-box {
        background-color: var(---white);
        border: 1px solid var(---lightgray);
        border-radius: 10px;
        width: 320px;
        height: 110px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-form .container .info .info-box .data .text p {
        font-size: 12px;
        color: var(---darkgrey);
        font-weight: 500;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 550px;
        height: 100px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 20px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .review .review-slider .box .data p {
        font-size: 16px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 500;
        margin-top: 20px;
    }

    .ceo-profile .container .text {
        width: 500px;
    }

    .ceo-profile .container .text #team-para {
        font-size: 13px;
        line-height: 40px;
    }
}

@media (max-width:980px) {
    .hero .hero-slider .box .image {
        width: 450px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 130px;
        height: 250px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 50px;
        right: 80px;
        bottom: 80px;
    }

    .hero .hero-slider .box .image:hover #mouse-pic {
        transform: translateX(20px);
    }

    .hero .hero-slider .box .image:hover #left-pic {
        transform: translateX(-20px) rotate(-10deg);
    }

    .hero .hero-slider .box .text h1 {
        font-size: 35px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 13px;
        font-weight: 600;
        line-height: 25px;
        margin: 15px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 130px;
        height: 50px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 14px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 14px;
    }

    .hero .hero-slider .box .text button:hover::before {
        transform: scaleX(1);
        border-radius: 5px;
    }

    .all-service .container .col-1 .slide p {
        color: var(---darkgrey);
        font-size: 11px;
        font-weight: 500;
        line-height: 25px;
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide {
        width: 290px;
        border-radius: 20px;
    }

    .all-service .container .col-1 .slide img {
        width: 80px;
        height: 80px;
    }

    .port-hero .container .hero-port-slider {
        width: 400px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 45px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 11px;
        line-height: 30px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .categories-slider .categories-box {
        width: 250px;
        height: 100px;
        border-radius: 15px;
    }

    .ceo-profile .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 500;
        line-height: 40px;
    }

    .ceo-profile .container .ceo-image {
        width: 400px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 20px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 550px;
        height: 720px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 500px;
        height: 100px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 20px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .contact-form .container .form-box .data button {
        width: 200px;
        height: 70px;
        background: var(---grey);
        font-size: 18px;
        color: var(---black);
        font-weight: 500;
        cursor: pointer;
    }
    .categories .row .column #video-box {
        width: 250px;
        height: 440px;
    }
}

@media (max-width:960px) {
    .header .container .right .btn1 {
        width: 160px;
        height: 70px;
    }

    .header .container .right .btn1:hover {
        box-shadow: 0px 0px 20px #d02d35b9;
    }

    .header .container .right .icon {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }

    /*Section and Container Spacing*/

    .ser {
        margin-top: 90px;
    }

    .about {
        margin-top: 90px;
    }

    .review {
        margin-top: 90px;
    }

    .review .review-slider {
        margin-top: 70px;
    }

    .team {
        margin-top: 90px;
    }

    .footer {
        margin-top: 90px;
    }

    .all-service {
        margin-top: 90px;
    }
    .all-service #servicecontainer{
        margin-top: 80px;
    }

    .con {
        margin-top: 90px;
    }

    .portfolio-slider {
        margin-top: 90px;
    }

    .portfolio-slider .port-slider {
        margin-top: 80px;
    }

    .categories {
        margin-top: 90px;
    }

    .categories .categories-slider {
        margin-top: 80px;

    }

    .team-member {
        margin-top: 90px;
    }

    .ceo-profile {
        margin-top: 90px;
    }
    .website-data .container .mail{
        margin-top: 90px;
    }

    .brand{
        margin-top: 90px;
        margin-bottom: 90px;
    }

    /*Section and Container Spacing*/

    .con .container h1 {
        font-size: 50px;
    }

    .con #fig {
        position: absolute;
        right: 100px;
        bottom: -50px;
        z-index: -7;
        width: 120px;
        height: 120px;
    }

    .con #ps {
        position: absolute;
        left: 70px;
        bottom: -20px;
        z-index: -7;
        width: 80px;
        height: 80px;
    }

    .con #wp {
        position: absolute;
        right: 100px;
        top: -70px;
        z-index: -7;
        width: 150px;
        height: 150px;
    }

    .con #ai {
        position: absolute;
        left: 100px;
        top: -20px;
        z-index: -7;
    }

    .team-member .container .team-box {
        width: 280px;
        border-radius: 10px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 14px;
        font-weight: 500;
        margin-top: 5px;
    }

    .categories .row .column .content .overlay .text {
        font-size: 20px;
    }

}

@media (max-width:930px) {
    .header .container .navbar .data li a  {
        padding: 57px 12px;
        color: var(---black);
        font-weight: 600;
        font-size: 14px;
    }

    .hero .hero-slider .box .image {
        width: 400px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 120px;
        height: 230px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 40px;
        right: 70px;
        bottom: 80px;
    }

    .heading h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
        margin-top: 20px;
    }

    .heading h5 {
        font-size: 20px;
        color: var(---red);
        font-weight: 600;
    }

    .about .container .about-image {
        width: 400px;
    }

    .all-service .container .col-1 .slide {
        width: 270px;
        border-radius: 20px;
    }

    .port-hero .container .hero-port-slider {
        width: 350px;
        margin-right: 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 10px;
        line-height: 30px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .row .column .content {
        width: 240px;
        height: 200px;
    }

    .team-member .container .team-box {
        width: 240px;
        border-radius: 10px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 14px;
        font-weight: 500;
        margin-top: 5px;
    }

    .ceo-profile .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 500;
        line-height: 35px;
    }

    .ceo-profile .container .ceo-image {
        width: 350px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 20px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .ceo-profile .container .text {
        width: 400px;
    }

    .contact-form .container .form-box {
        background-color: var(---white);
        width: 500px;
        height: 620px;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }

    .contact-form .container .form-box .data input {
        display: block;
        width: 450px;
        height: 80px;
        border: 2px solid var(---lightgray);
        border-radius: 10px;
        margin: 30px 0px;
        font-size: 16px;
        color: var(---black);
        font-weight: 500;
        padding-left: 20px;
    }

    .contact-form .container .form-box .data textarea {
        display: block;
        width: 100%;
        height: 100px;
        border-radius: 10px;
        border: 2px solid var(---lightgray);
        font-size: 16px;
        color: var(---black);
        font-weight: 500;
        padding: 20px 0px;
        padding-left: 20px;
        resize: vertical;
    }

    .contact-form .container .info .info-box .data .info-image img {
        width: 40%;
    }
    .website-data .container h1{
        font-size: 40px;
        color: var(---black);
    }
    .website-data .container p{
        font-size: 12px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 40px;
        margin-top: 30px;
    }
    .header .container .navbar .data #service-subpage #downbtn{
        font-size: 14px;
    }

}

@media (max-width:855px) {
    .header .container .navbar .data li a  {
        font-size: 15px;
    }

    .hero .hero-slider .box .text p {
        font-size: 11px;
    }

    .advantages .container {
        margin-top: 10px;
    }

    .all-service .container .col-1 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .all-service .container #col-2 {
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide {
        margin: 10px 10px;
        padding: 20px 0px;
    }

    .all-service .container .col-1 .slide h2 {
        font-size: 18px;
        color: var(---black);
        margin-top: 10px;
    }

    .all-service .container .col-1 .slide p {
        font-size: 10px;
        font-weight: 500;
        line-height: 25px;
        ;
    }

    .service-hero .container .text h1 {
        font-size: 50px;
    }

    .service-hero .container .text #hero-para {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 600;
        line-height: 35px;
        margin: 20px 0px;
    }

    .categories .row .column {
        margin-top: 30px;
    }
}

@media (max-width:850px) {
    /*Section and Container Spacing*/

    .ser {
        margin-top: 80px;
    }

    .about {
        margin-top: 80px;
    }

    .review {
        margin-top: 80px;
    }

    .review .review-slider {
        margin-top: 60px;
    }

    .team {
        margin-top: 80px;
    }

    .team .team-slider {
        margin-top: 60px;
    }

    .footer {
        margin-top: 80px;
    }

    .all-service {
        margin-top: 80px;
    }

    .con {
        margin-top: 80px;
    }

    .portfolio-slider {
        margin-top: 80px;
    }

    .portfolio-slider .port-slider {
        margin-top: 60px;
    }

    .categories {
        margin-top: 80px;
    }

    .categories .categories-slider {
        margin-top: 60px;
    }
    .all-service #servicecontainer{
        margin-top: 60px;
    }

    .team-member {
        margin-top: 80px;
    }

    .ceo-profile {
        margin-top: 80px;
    }
    .website-data .container .mail{
        margin-top: 80px;
    }
    .brand{
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .brand .slider-track {
        margin-top: 80px;
    }

    /*Section and Container Spacing*/
    .header .container .left .navbar {
        background-color: transparent;
        margin-left: 0px;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 0;
        left: -100%;
        z-index: 7;
        transition: 0.2s all linear;
    }

    .header .container .navbar .data .activelink,
    .btna:hover {
        border-top: 3px solid var(---red);
        border-bottom: 3px solid var(---red);
        color: var(---red);
    }

    .header .container .navbar .data {
        width: 100%;
        background-color: var(---white);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.096);
        border-radius: 0px 10px 10px 0px;
        padding: 100px 0px;
        line-height: 0px;
        height: 100%;
        display: block;
    }
    .header .container .navbar .data li .sub-page{
        width: 100%;
        padding: 10px 10px;
        border-radius: 10px;
        top: 100%;
        display: none;
    }
    .header .container .navbar .data .sub-page #textnav{
        display: block;
        font-size: 18px;
        font-weight: 600;
        padding: 0px 0px;
        line-height: 70px;
    }

    .header .container .navbar .data #service-subpage #downbtn{
        font-size: 20px;
    }

    .header .container .left .navbar #close {
        display: inherit;
    }

    .header .container .navbar .data li a  {
        display: block;
        font-size: 25px;
        margin: 10px 20px;
        text-align: center;
    }

    .header .container .right #menu {
        display: inherit;
    }
    .hero .hero-slider .box {
        display: block;
    }

    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 700px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 200px;
        height: 400px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 70px;
        right: 100px;
        bottom: 100px;
    }

    .hero .hero-slider .box .image:hover #left-pic {
        transform: translateX(-10px) rotate(-5deg);
    }

    .hero .hero-slider .box .text {
        text-align: center;
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .hero .hero-slider .box .text .button2 {
        justify-content: center;
    }

    .hero .hero-slider .box .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 600;
        line-height: 35px;
        margin: 20px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 170px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .hero .hero-slider .box .text button:hover {
        box-shadow: 0px 0px 20px #d02d3594;
        color: var(---white);
    }

    .advantages .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantages .container .counter-box {
        margin: 20px 20px;
    }

    .about .container {
        display: block;
    }

    .about .container .about-text {
        text-align: center;
        margin-top: 30px;
    }

    .about .container .about-text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text p {
        font-size: 20px;
        line-height: 50px;
        margin: 20px 0px;
        width: 100%;
    }

    .about .container .about-text .button2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about .container .about-text button {
        width: 180px;
        height: 70px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 18px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .about .container .about-image {
        width: 700px;
        margin: 0px auto;
    }

    .port-hero .container {
        display: block;
    }

    .port-hero .container .hero-port-slider {
        margin: 0px auto;
        width: 700px;
        margin-top: 50px;
    }

    .port-hero .container .port-text {
        text-align: center;
    }

    .port-hero .container .port-text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 16px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .team-hero .container .text h1 {
        font-size: 70px;
        color: var(---white);
        font-weight: 400;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 20px;
        line-height: 40px;
        margin-top: 20px;
    }

    .team-member .container .team-col-1 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member .container .team-box {
        margin: 10px 10px;
    }

    .ceo-profile .container {
        display: block;
    }

    .ceo-profile .container .text h1 {
        font-size: 70px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 20px;
        font-weight: 500;
        line-height: 50px;
    }

    .ceo-profile .container .ceo-image {
        width: 90%;
        margin: 0px auto;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 30px;
        color: var(---red);
        font-weight: 500;
        margin: 20px 0px;
    }

    .ceo-profile .container .text {
        text-align: center;
        margin-top: 30px;
    }

    .ceo-profile .container .text {
        width: 100%;
    }

    .team-member .container #team-col-2 {
        margin-top: 0px;
    }

    .contact-form .container {
        display: block;
    }

    .contact-form .container .form-box {
        width: 650px;
        margin: 0px auto;
        margin-top: 50px;
    }

    .contact-form .container .form-box .data input {
        width: 580px;
    }

    .contact-form .container .info .info-box {
        margin: 0px auto;
        margin-bottom: 20px;
        width: 650px;
    }

    .service-hero .container .text #hero-para {
        width: 100%;
    }
}

@media (max-width:820px) {
    .header .container .left .navbar {
        top: 10%;
    }

    .con .container h1 {
        font-size: 40px;
    }

    .con .container p {
        font-size: 16px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 35px;
        margin: 30px 0px;
    }

    .con .container {
        height: auto;
        padding: 50px 0px;
    }

    .column {
        width: 50%;
    }

    .categories .row .column .content {
        width: 350px;
        height: 290px;
    }
    .categories .categories-slider .categories-box {
        width: 200px;
        height: 80px;
        border-radius: 10px;
    }
    .categories .categories-slider .categories-box h1{
        font-size: 16px;
    }
    

}

@media (max-width:780px) {

    section {
        padding: 10px 10px;
    }

    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 650px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 200px;
        height: 400px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 70px;
        right: 100px;
        bottom: 100px;
    }

    .hero .hero-slider .box .image:hover #left-pic {
        transform: translateX(-10px) rotate(-5deg);
    }

    .footer .container .navbar a {
        font-size: 16px;
        color: var(---white);
        padding: 0px 18px;
        font-weight: 500;
    }

    .categories .row .column .content {
        width: 320px;
        height: 320px;
    }

    .ceo-profile .container .text h1 {
        font-size: 60px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 18px;
        font-weight: 500;
        line-height: 50px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 25px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }
    .website-data .container{
        text-align: center;
    }
    .website-data .container h1{
        font-size: 35px;
        color: var(---black);
    }
    .website-data .container p{
        font-size: 10px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 40px;
        margin-top: 30px;
    }
    .categories .row .column .content {
        height: 270px;
    }
}

@media (max-width:720px) {
    .about .container .about-image {
        width: 650px;
    }

    .port-hero .container .hero-port-slider {
        width: 100%;
        margin-top: 30px;
    }

    .ceo-profile .container .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 16px;
        font-weight: 500;
        line-height: 40px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 25px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .categories .row .column .content .overlay .text {
        color: var(---white);
        font-size: 20px;
        font-weight: 600;
        margin-left: 20px;
    }
}

@media (max-width:690px) {
    /*Section and Container Spacing*/

    .ser {
        margin-top: 70px;
    }

    .ser .slider {
        margin-top: 0px;
        padding: 50px 0px;
        padding-bottom: 70px;
    }

    .about {
        margin-top: 70px;
    }

    .review {
        margin-top: 70px;
    }

    .review .review-slider {
        margin-top: 50px;
    }

    .team {
        margin-top: 70px;
    }

    .team .team-slider {
        padding: 50px 0px;
        padding-bottom: 70px;
    }


    .footer {
        margin-top: 70px;
    }

    .all-service {
        margin-top: 70px;
    }

    .con {
        margin-top: 70px;
    }
    .all-service #servicecontainer{
        margin-top: 70px;
    }

    .portfolio-slider {
        margin-top: 70px;
    }

    .portfolio-slider .port-slider {
        margin-top: 50px;
    }

    .categories {
        margin-top: 70px;
    }

    .categories .categories-slider {
        margin-top: 50px;

    }

    .team-member {
        margin-top: 70px;
    }

    .ceo-profile {
        margin-top: 70px;
    }

    .website-data .container .mail{
        margin-top: 70px;
    }
    .brand{
        margin-top: 70px;
        margin-bottom: 70px;
    }
    .brand .slider-track {
        margin-top: 50px;
    }

    /*Section and Container Spacing*/
    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 600px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 200px;
        height: 350px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 70px;
        right: 100px;
        bottom: 100px;
    }

    .heading h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
        margin-top: 10px;
    }

    .heading h5 {
        font-size: 18px;
        color: var(---red);
        font-weight: 600;
    }

    .about .container .about-text p {
        font-size: 18px;
        line-height: 50px;
        margin: 20px 0px;
    }

    .about .container .about-image {
        width: 600px;
    }

    .review .review-slider .box .data .top .image img {
        width: 60px;
        height: 60px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 14px;
        color: var(---black);
        font-weight: 600;
    }

    .review .review-slider .box .data .top .google {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }

    .review .review-slider .box .data p {
        font-size: 10px;
        line-height: 25px;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 10px;
    }

    .team .team-slider .team-box .team-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 700;
    }

    .team .team-slider .team-box .team-text p {
        color: var(---red);
        font-size: 14px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .team .team-slider .team-box .team-text button {
        width: 120px;
        height: 50px;
        background-color: var(---lightgray);
        font-size: 12px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
        position: relative;
    }

    .con .container h1 {
        font-size: 30px;
    }

    .con .container p {
        font-size: 14px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 35px;
        margin: 20px 0px;
    }

    .con .container button {
        width: 150px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .all-service .container .col-1 .slide {
        border-radius: 20px;
    }

    .port-hero .container .port-text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 14px;
        line-height: 40px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 20px;
    }

    .categories .row .column .content {
        width: 280px;
        height: 220px;
    }

    .team-hero .container .text h1 {
        font-size: 60px;
        color: var(---white);
        font-weight: 400;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 18px;
        line-height: 40px;
        margin-top: 20px;
    }

    .contact-form .container .form-box {
        width: 580px;
        margin: 0px auto;
        margin-top: 50px;
    }

    .contact-form .container .form-box .data input {
        width: 530px;
    }

    .contact-form .container .info .info-box {
        margin: 0px auto;
        margin-bottom: 20px;
        width: 580px;
    }

    .categories .categories-slider .categories-box {
        width: 180px;
        height: 70px;
        border-radius: 10px;
    }
    .categories .categories-slider .categories-box h1{
        font-size: 14px;
    }
}

@media (max-width:640px) {
    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 25px;
        color: var(---black);
        font-weight: 600;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 16px;
        color: var(---darkgrey);
        font-weight: 500;
        margin-top: 5px;
    }

    .review .review-slider .box .data p {
        font-size: 18px;
        line-height: 50px;
        color: var(---darkgrey);
        font-weight: 500;
    }

    .review .review-slider .box .data .top .image img {
        width: 100px;
        height: 100px;
    }

    .review .review-slider .box .data .top .google {
        width: 80px;
        height: 80px;
    }

    .review .review-slider .box .data #stars {
        width: 230px;
    }

    .ceo-profile .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 500;
        line-height: 40px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 20px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .top-header .container .right-top-header {
        display: none;
    }

    .top-header .container {
        justify-content: center;
    }
}

@media (max-width:620px) {
    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 550px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 160px;
        height: 300px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 50px;
        right: 100px;
        bottom: 100px;
    }

    .heading h1 {
        font-size: 35px;
        color: var(---black);
        font-weight: 700;
        margin-top: 10px;
    }

    .heading h5 {
        font-size: 18px;
        color: var(---red);
        font-weight: 600;
    }

    .about .container .about-image {
        width: 520px;
    }

    .about .container .about-text p {
        font-size: 14px;
        line-height: 40px;
        margin: 20px 0px;
    }

    .about .container .about-text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 400;
    }

    .service-hero .container .text h1 {
        font-size: 45px;
    }

    .con .container p {
        font-size: 12px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 35px;
        margin: 20px 0px;
    }

    .port-hero .container .port-text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 12px;
        line-height: 30px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 30px;
    }

    .categories .row .column .content {
        width: 250px;
        height: 200px;
    }

    .team-hero .container .text h1 {
        font-size: 50px;
        color: var(---white);
        font-weight: 400;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        margin-top: 20px;
    }

    .ceo-profile .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 500;
        line-height: 35px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 20px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .contact-form .container .form-box {
        width: 500px;
        margin: 0px auto;
        margin-top: 50px;
    }

    .contact-form .container .form-box .data input {
        width: 100%;
        border-radius: 5px;
    }

    .contact-form .container .form-box .data {
        width: 90%;
    }

    .contact-form .container .info .info-box {
        margin: 0px auto;
        margin-bottom: 20px;
        width: 100%;
    }
    .categories .categories-slider {
        flex-wrap: wrap;
        justify-content: center;
    }
    .categories .categories-slider .categories-box{
        margin: 10px;
    }
}

@media (max-width:550px) {
    .header .container .left .navbar {
        top: 16%;
    }

    .header .container .right .btn1 {
        width: 130px;
        height: 60px;
        font-size: 16px;
        border-radius: 5px;
    }

    .header .container .right #menu {
        margin-right: 5px;
    }

    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 470px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 150px;
        height: 280px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 50px;
        right: 100px;
        bottom: 100px;
    }

    .hero .hero-slider .box .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 600;
        line-height: 30px;
        margin: 20px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 130px;
        height: 50px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 14px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 14px;
    }

    .hero .hero-slider .box .text button:hover {
        box-shadow: 0px 0px 10px #d02d3594;
        color: var(---white);
    }

    /*Section and Container Spacing*/

    .ser {
        margin-top: 50px;
    }

    .ser .slider {
        margin-top: 0px;
        padding: 50px 0px;
        padding-bottom: 70px;
    }

    .about {
        margin-top: 50px;
    }

    .review {
        margin-top: 50px;
    }

    .review .review-slider {
        margin-top: 30px;
    }

    .team {
        margin-top: 50px;
    }

    .team .team-slider {
        margin-top: 30px;
        padding: 50px 0px;
        padding-bottom: 70px;
    }

    .footer {
        margin-top: 50px;
    }

    .all-service {
        margin-top: 50px;
    }

    .all-service #servicecontainer{
        margin-top: 30px;
    }

    .con {
        margin-top: 50px;
    }

    .categories {
        margin-top: 50px;
    }

    .categories .categories-slider {
        margin-top: 30px;
    }

    .team-member {
        margin-top: 50px;
    }

    .ceo-profile {
        margin-top: 50px;
    }

    .website-data .container .mail{
        margin-top: 50px;
    }
    .brand{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .brand .slider-track {
        margin-top: 30px;
    }

    /*Section and Container Spacing*/

    .header .container .left .logo{
        width: 70px;
        height: 70px;
    }
    .header .container .left .logo img{
        width: 100%;
    }

    .about .container .about-image {
        width: 420px;
    }

    .about .container .about-text p {
        font-size: 12px;
        line-height: 35px;
        margin: 20px 0px;
    }

    .about .container .about-text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text button {
        width: 150px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .about .container .about-text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .footer .container .navbar {
        margin-top: 0px;
    }

    .footer .container .navbar a {
        font-size: 12px;
        color: var(---white);
        padding: 0px 14px;
        font-weight: 500;
    }

    .footer .container .footer-icon {
        margin-top: 30px;
    }

    .footer .last {
        text-align: center;
        border-top: 2px solid #ffffff2c;
        margin-top: 20px;
    }

    .footer .last p {
        font-size: 12px;
        color: var(---white);
        font-weight: 400;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .con .container p {
        font-size: 11px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 25px;
        margin: 10px 0px;
    }

    .con .container h1 {
        font-size: 25px;
    }

    .con .container button {
        width: 110px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .con #fig {
        position: absolute;
        right: 50px;
        bottom: -30px;
        z-index: -7;
        width: 90px;
        height: 90px;
    }

    .con #ps {
        position: absolute;
        left: 50px;
        bottom: -20px;
        z-index: -7;
        width: 70px;
        height: 70px;
    }

    .con #wp {
        position: absolute;
        right: 50px;
        top: -50px;
        z-index: -7;
        width: 120px;
        height: 120px;
    }

    .con #ai {
        position: absolute;
        left: 50px;
        top: -10px;
        z-index: -7;
        width: 50px;
        height: 50px;
    }

    .port-hero .container .port-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 10px;
        line-height: 30px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 10px;
    }

    .categories .row .column .content {
        width: 220px;
        height: 180px;
        border-radius: 10px;
    }

    .team-hero .container .text h1 {
        font-size: 40px;
        color: var(---white);
        font-weight: 400;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 14px;
        line-height: 30px;
        margin-top: 10px;
    }

    .ceo-profile .container .ceo-image img {
        border-radius: 10px;
    }

    .contact-form .container .form-box {
        width: 100%;
        margin: 0px auto;
        margin-top: 20px;
        height: auto;
    }

    .contact-form .container .form-box .data input {
        width: 100%;
        border-radius: 5px;
    }
    .categories .row .column #video-box {
        width: 200px;
        height: 350px;
    }
    .header .container .navbar .data #service-subpage #downbtn{
        font-size: 16px;
    }
    .header .container .navbar .data li a {
        padding: 40px 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

}

@media (max-width:530px) {
    .team-member .container .team-box {
        background-color: var(---white);
        width: 80%;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 35px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 20px;
        font-weight: 500;
        margin-top: 10px;
    }
    .website-data .container .text{
        margin-top: 20px;
    }
}

@media (max-width:500px) {
    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 420px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 120px;
        height: 230px;
        top: 10px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 50px;
        right: 70px;
        bottom: 70px;
    }

    .heading h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
        margin-top: 5px;
    }

    .heading h5 {
        font-size: 16px;
        color: var(---red);
        font-weight: 600;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 18px;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 12px;
    }

    .review .review-slider .box .data #stars {
        margin-top: 15px;
        width: 170px;
    }

    .review .review-slider .box .data .top .image img {
        width: 80px;
        height: 80px;
    }

    .review .review-slider .box .data .top .google {
        margin-right: 10px;
        width: 60px;
        height: 60px;
    }

    .review .review-slider .box .data p {
        font-size: 16px;
        line-height: 40px;
        margin-top: 10px;
    }

    .team .team-slider .team-box {
        padding-bottom: 20px;
        border-radius: 10px;
    }

    .team .team-slider .team-box .team-image img {
        border-radius: 10px 10px 0px 0px;
    }

    .team .team-slider .team-box .team-text h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 700;
    }

    .team .team-slider .team-box .team-text p {
        color: var(---red);
        font-size: 12px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .team .team-slider .team-box .team-text button {
        width: 100px;
        height: 40px;
        background-color: var(---lightgray);
        font-size: 11px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 5px;
        position: relative;
    }

    .service-hero .container .text h1 {
        font-size: 40px;
    }

    .service-hero .container .text #hero-para {
        color: var(---darkgrey);
        font-size: 14px;
        font-weight: 600;
        line-height: 35px;
        margin: 20px 0px;
    }

    .service-hero .container .text button {
        width: 150px;
        height: 60px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .service-hero .container .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }

    .categories .row .column .content {
        width: 200px;
        height: 170px;
    }

    .categories .heading h1 {
        font-size: 30px;
    }

    .categories .row .column .content .overlay .text {
        color: var(---white);
        font-size: 14px;
        font-weight: 600;
        margin-left: 10px;
    }

    .team-hero .container .text h1 {
        font-size: 30px;
        color: var(---white);
        font-weight: 400;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 12px;
        line-height: 25px;
        margin-top: 10px;
    }

    .team-hero {
        height: 500px;
    }

    .ceo-profile .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 10px;
        font-weight: 500;
        line-height: 30px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 18px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }
}

@media (max-width:450px) {
    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 360px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 100px;
        height: 200px;
        top: 20px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 40px;
        right: 70px;
        bottom: 70px;
    }

    .hero .hero-slider .box .text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 600;
        line-height: 25px;
        margin: 20px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 110px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 12px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text {
        margin-bottom: 10px;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 12px;
    }

    .hero .hero-slider .box .text button:hover {
        box-shadow: 0px 0px 10px #d02d3594;
        color: var(---white);
    }

    .advantages .container .counter-box h5 {
        font-size: 16px;
        color: var(--lightgray);
        font-weight: 500;
        line-height: 25px;
    }

    .advantages .container .counter-box .counter {
        font-size: 40px;
        font-weight: 600;
        color: var(---black);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .heading h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 700;
        margin-top: 5px;
    }

    .heading h5 {
        font-size: 12px;
        color: var(---red);
        font-weight: 600;
    }

    .about .container .about-image {
        width: 350px;
    }

    .about .container .about-text p {
        font-size: 10px;
        line-height: 30px;
        margin: 15px 0px;
    }

    .about .container .about-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text button {
        width: 110px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 10px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .about .container .about-text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 10px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 16px;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 10px;
    }

    .review .review-slider .box .data #stars {
        margin-top: 15px;
        width: 150px;
    }

    .review .review-slider .box .data .top .google {
        margin-right: 10px;
        width: 50px;
        height: 50px;
    }

    .review .review-slider .box .data p {
        font-size: 14px;
        line-height: 40px;
    }

    .team .team-slider .team-box .team-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .team .team-slider .team-box .team-text p {
        color: var(---red);
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .team .team-slider .team-box .team-text button {
        width: 150px;
        height: 60px;
        background-color: var(---lightgray);
        font-size: 16px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 5px;
        position: relative;
    }

    .team .team-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: var(---red);
    }

    .ser .slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: var(---red);
    }

    .hero .hero-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: var(---red);
    }

    .footer .container .navbar a {
        display: block;
        line-height: 50px;
    }

    .service-hero .container .text button {
        width: 110px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .service-hero .container .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 12px;
    }

    .service-hero .container .text #hero-para {
        color: var(---darkgrey);
        font-size: 12px;
        font-weight: 600;
        line-height: 30px;
        margin: 10px 0px;
    }

    .service-hero .container .text h1 {
        font-size: 30px;
    }

    .con .container p {
        font-size: 10px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 25px;
        margin: 15px 0px;
    }

    .con .container h1 {
        font-size: 20px;
    }

    .con .container button {
        width: 100px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 12px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .port-hero .container .port-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 400;
    }

    .port-hero .container .port-text p {
        font-size: 9px;
        line-height: 25px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 10px;
    }

    .port-hero .container .hero-port-slider {
        margin-top: 15px;
    }

    .categories .row .column .content {
        width: 180px;
        height: 150px;
    }

    .categories .row .column {
        margin-top: 20px;
    }

    .categories .categories-slider .categories-box h1 {
        font-size: 18px;
        font-weight: 600;
    }
    .categories .row .column #video-box {
        width: 180px;
        height: auto;
    }

    .team-hero {
        height: 400px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 16px;
        font-weight: 500;
        margin-top: 10px;
    }

    .ceo-profile .container .text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 9px;
        font-weight: 500;
        line-height: 30px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 18px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .contact-form .container .form-box .data button {
        width: 120px;
        height: 50px;
        background: var(---grey);
        font-size: 12px;
        color: var(---black);
        font-weight: 500;
        cursor: pointer;
        border-radius: 5px;
    }

    .contact-form .container .form-box .data .contact-btn {
        margin-top: 20px;
    }

    .contact-form .container .form-box .data {
        width: 90%;
    }

    .top-header .container .top-header-left .top-header-box p {
        font-size: 12px;
    }
    .website-data .container .mail h6{
        font-size: 20px;
    }
    .website-data .container .mail .paramail{
        font-size: 20px;
        color: var(---darkgrey);
        margin-top: 10px;
    }
    .categories .categories-slider .categories-box {
        width: 140px;
        height: 60px;
    }
    .categories .categories-slider .categories-box {
        margin: 5px;
    }
    .categories .categories-slider .categories-box h1{
        font-size: 10px;
    }
}

@media (max-width:400px) {
    #before-message {
        padding: 20px 10px;
    }

    /*Section and Container Spacing*/
    .advantages {
        margin-top: 20px;
    }

    .ser {
        margin-top: 30px;
    }

    .ser .slider {
        margin-top: 0px;
        padding: 30px 0px;
        padding-bottom: 50px;
    }

    .about {
        margin-top: 20px;
    }

    .review {
        margin-top: 20px;
    }

    .review .review-slider {
        margin-top: 20px;
    }

    .team {
        margin-top: 20px;
    }

    .team .team-slider {
        margin-top: 0px;
        padding: 30px 0px;
        padding-bottom: 50px;
    }

    .hero .hero-slider {
        background-color: transparent;
        padding-bottom: 30px;
    }

    .footer {
        margin-top: 20px;
    }

    .all-service {
        margin-top: 20px;
    }
    .all-service #servicecontainer{
        margin-top: 20px;
    }

    .con {
        margin-top: 20px;
    }

    .portfolio-slider {
        margin-top: 20px;
    }

    .portfolio-slider .port-slider {
        margin-top: 30px;
    }

    .portfolio-slider .port-slider2 {
        margin-top: 20px;
    }

    .categories {
        margin-top: 20px;
    }

    .categories .categories-slider {
        margin-top: 20px;
    }

    .team-member {
        margin-top: 20px;
    }

    .ceo-profile {
        margin-top: 20px;
    }
    .website-data .container .mail{
        margin-top: 30px;
    }
    .brand{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .brand .slider-container{
        margin-top: 20px;
    }

    /*Section and Container Spacing*/
    #upper {
        font-size: 20px;
        color: var(---black);
        border-radius: 100px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 5%;
        bottom: 3%;
        background-color: var(---white);
        box-shadow: 0px 0px 10px #2222221a;
        cursor: pointer;
        z-index: 7;
    }

    .header .container .left .navbar {
        top: 15%;
    }

    .header .container .left .logo {
        width: 50px;
        height: 50px;
    }

    .header .container .left .logo img {
        width: 100%;
    }

    .header .container .right .btn1 {
        width: 90px;
        height: 40px;
        font-size: 12px;
        border-radius: 5px;
    }

    .header .container .right .btn1:hover {
        box-shadow: 0px 0px 10px #d02d35b9;
    }

    .header .container .navbar .data #service-subpage #downbtn{
        font-size: 14px;
    }

    .header .container .right .icon i {
        width: 30px;
        height: 30px;
        border-radius: 100px;
        border: 2px solid var(---darkgrey);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(---darkgrey);
    }
    .header .container .navbar .data li a {
        padding: 40px 20px;
        color: var(---black);
        font-weight: 600;
        font-size: 16px;
    }
    .header .container .navbar .data .sub-page #textnav{
        display: block;
        font-size: 16px;
        font-weight: 600;
        padding: 0px 0px;
        line-height: 50px;
    }

    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 320px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 90px;
        height: 170px;
        top: 20px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 30px;
        right: 60px;
        bottom: 60px;
    }

    .hero .hero-slider .box .text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 400;
    }

    .hero .hero-slider .box .text p {
        color: var(---darkgrey);
        font-size: 10px;
        font-weight: 600;
        line-height: 25px;
        margin: 10px 0px;
    }

    .hero .hero-slider .box .text button {
        width: 90px;
        height: 35px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 10px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .hero .hero-slider .box .text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 10px;
    }

    .hero .hero-slider .box .text button:hover {
        box-shadow: 0px 0px 10px #d02d3594;
        color: var(---white);
    }

    .heading h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 700;
        margin-top: 5px;
    }

    .heading h5 {
        font-size: 12px;
        color: var(---red);
        font-weight: 600;
    }

    .ser .slider .slide {
        padding: 30px 0px;
    }

    .about .container .about-image {
        width: 300px;
    }

    .about .container .about-text p {
        font-size: 9px;
        line-height: 25px;
        margin: 10px 0px;
    }

    .about .container .about-text {
        margin-top: 15px;
    }

    .about .container .about-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 400;
    }

    .about .container .about-text button {
        width: 110px;
        height: 40px;
        background-color: var(---grey);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(---black);
        font-size: 10px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        z-index: 5;
    }

    .about .container .about-text .button2 #learn {
        margin-left: 10px;
        color: var(---black);
        font-weight: 600;
        font-size: 10px;
    }

    .review .review-slider .box .data .top .image .detail h5 {
        font-size: 14px;
    }

    .review .review-slider .box .data .top .image .detail .date {
        font-size: 10px;
    }

    .review .review-slider .box .data #stars {
        margin-top: 15px;
        width: 130px;
    }

    .review .review-slider .box .data .top .google {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }

    .review .review-slider .box .data p {
        font-size: 12px;
        line-height: 30px;
    }

    .team .team-slider .team-box .team-text h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 700;
    }

    .team .team-slider .team-box .team-text p {
        color: var(---red);
        font-size: 14px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .team .team-slider .team-box .team-text button {
        width: 120px;
        height: 40px;
        background-color: var(---lightgray);
        font-size: 12px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 5px;
        position: relative;
    }

    .all-service .container .col-1 .slide {
        border-radius: 10px;
    }

    .service-hero .container .text #hero-para {
        color: var(---darkgrey);
        font-size: 10px;
        font-weight: 600;
        line-height: 25px;
        margin: 10px 0px;
    }

    .service-hero .container .text h1 {
        font-size: 25px;
    }

    .con .container {
        padding: 30px 0px;
        border-radius: 10px;
    }

    .con .container p {
        font-size: 9px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 25px;
        margin: 15px 0px;
    }

    .con #fig {
        position: absolute;
        right: 30px;
        bottom: -20px;
        z-index: -7;
        width: 70px;
        height: 70px;
    }

    .con #ps {
        position: absolute;
        left: 30px;
        bottom: -10px;
        z-index: -7;
        width: 50px;
        height: 50px;
    }

    .con #wp {
        position: absolute;
        right: 20px;
        top: -30px;
        z-index: -7;
        width: 90px;
        height: 90px;
    }

    .con #ai {
        position: absolute;
        left: 30px;
        top: -5px;
        z-index: -7;
        width: 30px;
        height: 30px;
    }

    .port-hero .container .port-text p {
        font-size: 8px;
        line-height: 20px;
        color: var(---darkgrey);
        font-weight: 600;
        margin-top: 10px;
    }

    .categories .row .column .content {
        width: 100%;
        height: 250px;
    }

    .categories .row .column {
        width: 100%;
    }

    .categories .row .column #video-box {
        width: 100%;
        height: auto;
    }

    .categories .row .column .content .overlay .text {
        color: var(---white);
        font-size: 25px;
        font-weight: 600;
        margin-left: 20px;
    }

    .team-hero .container .text p {
        color: var(---white);
        font-weight: 400;
        font-size: 10px;
        line-height: 25px;
        margin-top: 10px;
    }

    .team-hero {
        height: 300px;
    }

    .team-member .container .team-box .team-text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 700;
    }

    .team-member .container .team-box .team-text p {
        color: var(---red);
        font-size: 12px;
        font-weight: 500;
        margin-top: 10px;
    }

    .ceo-profile .container .text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 700;
    }

    .ceo-profile .container .text #team-para {
        color: var(---darkgrey);
        font-size: 8.5px;
        font-weight: 500;
        line-height: 25px;
    }

    .ceo-profile .container .text .para-ceo {
        font-size: 16px;
        color: var(---red);
        font-weight: 500;
        margin: 10px 0px;
    }

    .service-hero .container .text #hero-para {
        width: 100%;
    }

    .categories .pop-image span {
        font-size: 50px;
    }

    .top-header .container .top-header-left .top-header-box p {
        font-size: 10px;
    }

    .top-header .container .top-header-left .top-header-box i {
        font-size: 16px;
        color: var(---white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .website-data .container p{
        font-size: 10px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .brand .category img{
        width: 70%;
    }
    .brand .category {
        left: calc(100px * 13);
    }

}

@media (max-width:350px) {
    .hero .hero-slider .box .image {
        margin: 0px auto;
        width: 280px;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 80px;
        height: 150px;
        top: 20px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 30px;
        right: 50px;
        bottom: 50px;
    }

    .con .container p {
        font-size: 7px;
        color: var(---darkgrey);
        font-weight: 500;
        line-height: 18px;
        margin: 10px 0px;
    }
}

@media (max-width:350px) {
    .review .review-slider .box .data p {
        font-size: 10px;
        line-height: 25px;
    }
}

@media (max-width:320px) {
    .hero .hero-slider .box .image {
        width: 100%;
    }

    .hero .hero-slider .box .image #left-pic {
        width: 25%;
        height: 150px;
        top: 20px;
    }

    .hero .hero-slider .box .image #mouse-pic {
        width: 10%;
    }
}

/* media quries */