@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    background-image: url("../assets/images/graphics/home-shape3.png");
    background-position: top right;
    background-repeat: no-repeat;
    /* background-image: url("../assets/images/graphics/home-shape3.png");
    background-position: top right;
    background-repeat: no-repeat; */
    /*  background-size: cover;
    background-position: center;
    object-fit: cover; */
}


/* Gloabal */

.main-btn {
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 14px;
    padding: 17px 30px;
    cursor: pointer;
    background-image: -moz-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -webkit-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -ms-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    box-shadow: 2.828px 2.828px 10px 0px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
    word-wrap: normal;
}

.secondary-btn {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 14px;
    padding: 12px 31px;
    background-image: -moz-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -webkit-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -ms-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    box-shadow: 2.828px 2.828px 10px 0px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

.plain-btn {
    text-transform: uppercase;
    color: #5d86f1;
    background: #fff;
    font-weight: 900;
    text-decoration: none;
    font-size: 11px;
    /* box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15); */
    border-radius: 10px;
    padding: 13px 16px;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
}

.plain-btn.scrolled {
    color: #fff;
    background-image: -moz-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -webkit-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -ms-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    box-shadow: 2.828px 2.828px 10px 0px rgba(0, 0, 0, 0.16);
}

.abtn {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 11px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
    padding: 13px 20px;
    border-radius: 10px;
    white-space: nowrap;
}

.abtn:hover {
    background: #fff;
    color: #5d86f1 !important;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
}

.abtn.scrolled {
    color: #2f56ee;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 15px;
    color: #2b2b2b;
}

h1>span {
    font-weight: 600;
    color: #2b2b2b;
}

h1>span>.blue {
    color: #6581e2;
}

h3 {
    color: #000;
    font-weight: 700;
    font-size: 26px;
}

h3.light {
    color: #000;
    font-weight: 500;
    font-size: 26px;
}

h4 {
    font-size: 20px;
    color: rgb(3, 5, 6);
    font-weight: bold;
    line-height: 2;
}

h4>span {
    color: #6581e2;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    color: rgb(71, 71, 71);
    font-weight: bold;
    line-height: 2.333;
}

p {
    font-size: 18px;
    color: #8f8f8f;
    font-weight: 400;
}

p.small-p {
    font-size: 14px;
    color: #8d8f93;
    line-height: 1.8;
}

nav {
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: 0.3s ease;
    overflow: hidden;
    transition: 0.3s ease;
}

nav.scrolled {
    /* background: rgba( 255, 255, 255, 0.25);
    backdrop-filter: blur( 4px);
    -webkit-backdrop-filter: blur( 4px);*/
    box-shadow: 0 6px 19px rgba(0, 0, 0, 0.05);
    /* background: #6E7EF7; */
    background: #fff;
}

nav .navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 5.5vw;
    z-index: 999;
    transition: 0.3s ease;
}

#navigation.scrolled {
    padding: .9vw 5.5vw;
}

nav .navigation .logo {
    width: 18%;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

nav .navigation .logo img {
    width: 100%;
}

nav .navigation .logo.scrolled {
    width: 14%;
}

nav .navigation .logo.scrolled img {
    width: 100%;
}

nav .navigation .nav-links {
    width: 84%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

nav .navigation .nav-links .wrapper ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
}

nav .navigation .nav-links .wrapper ul li {
    list-style: none;
    margin-left: 10px;
}

#active {
    display: none;
}

nav #engine {
    width: 600px;
    height: 55px;
    border-radius: 10px;
    background: #fff;
    padding: 0 20px;
    box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

#engine.scrolled {
    height: 55px;
    background: #EBEFF1;
    box-shadow: none;
}

nav #engine .requirements {
    /* border-right: .5px solid #c9c5c5; */
    position: relative;
}

nav #engine .requirements .head {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

nav #engine .requirements .head::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -25px;
    width: .5px;
    height: 50px;
    background: #c9c5c5;
}

nav #engine .requirements .head h5 {
    font-size: 12px;
    font-weight: 700;
    color: #7b7b7b;
    line-height: 0;
    padding-right: 20px;
}

nav #engine .requirements .head i {
    font-size: 14px;
    font-weight: 700;
    color: #7b7b7b;
    padding: 0;
    margin: 0;
    line-height: 0;
    cursor: pointer;
}

nav #engine .requirements:nth-child(n)>.box>select {
    font-size: 15px;
    font-weight: bold;
    color: #2e2e2e;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
    cursor: pointer;
    transition: 0.3s ease;
}

nav #engine .requirements:nth-child(n)>.box>select.scrolled {
    background: #EBEFF1;
    /* color: #a5a4af; */
}

nav #engine .requirements:nth-child(n)>.box>select option {
    font-size: 15px;
    font-weight: 400;
    color: #2e2e2e;
    background: #fff;
    cursor: pointer;
    padding: 20px !important;
}

nav #engine .search h5 {
    font-size: 12px;
    font-weight: 700;
    color: #7b7b7b;
    line-height: 0;
}

nav #engine .search input {
    font-size: 15px;
    font-weight: bold;
    color: #2e2e2e;
    border: none;
    outline: none;
    box-shadow: none;
    width: 130px;
    transition: 0.3s ease;
}

nav #engine .search input.scrolled {
    background: #EBEFF1;
}

nav #engine .search input::placeholder {
    font-size: 15px;
    font-weight: bold;
    color: #d7d7d7;
    transition: 0.3s ease;
}

nav #engine .search input.scrolled::placeholder {
    background: #EBEFF1;
}

nav #engine .search-icon i {
    color: #5166ff;
    font-size: 20px;
    font-weight: bolder;
    cursor: pointer;
}

#loginBtn i {
    color: #fff;
    font-size: 1.1rem;
    padding: 11px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: .3s ease;
    box-shadow: 0 7px 19px rgba(0, 0, 0, 0.09);
}

#loginBtn i:hover {
    color: rgb(123, 127, 241);
    background: #fff;
}

#loginBtn i.scrolled {
    background-image: -moz-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -webkit-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    background-image: -ms-linear-gradient( -16.895deg, rgb(81, 102, 255) 0%, rgb(114, 206, 205) 100%);
    color: #fff;
}


/* Hero Sectoion */

#hero {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    margin-top: 140px;
}

#hero .text {
    width: 50%;
}

#hero .text P {
    width: 83%;
}

#hero .img {
    width: 40%;
}

#hero .img img {
    padding-left: 15px;
    width: 95%;
}


/* Customers Section */

#partner {
    width: 100%;
    padding: 0 5.5vw;
    margin-top: 6vw !important;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: start;
    position: relative;
}

#partner .graphics1 {
    position: absolute;
    left: -20px;
    top: -120px;
    width: 350px;
    height: 500px;
    background-size: cover;
    background-position: center;
}

#partner .graphics1 svg {
    width: auto;
    height: auto;
}

#partner .partner-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#partner .partner-row h6 {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 800;
    color: #aeadad;
    margin: 0 30px 0 0;
    width: 15%;
}

#partner .partner-row .part-img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 85%;
    /* margin: 0 30px; */
    /* flex-wrap: wrap; */
}

#partner .partner-row .part-img img {
    width: 13%;
    margin: 0 30px 0 0;
    /* Safari/Chrome */
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 0.3s ease;
    cursor: pointer;
}

#partner .partner-row .part-img img:hover {
    /* Safari/Chrome */
    -webkit-filter: grayscale(0);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
}


/* Skill Section */

#skills {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
}

#skills #bg-skill {
    position: absolute;
    bottom: -20%;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    box-sizing: border-box;
    object-fit: cover;
    z-index: -99;
}

#skills .skill-des {
    width: 75%;
    margin: auto;
}

#skills ul.timeline {
    list-style-type: none;
    position: relative;
    transition: 0.3s ease;
    z-index: 400;
    background: transparent;
}

#more {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-left: 22px;
}

#more i {
    font-size: 12px;
}

ul.timeline .line {
    background-color: #bec0cc;
    background: #bec0cc;
    position: absolute;
    top: 10px;
    left: 0;
    width: 1.5px;
    height: 290px;
    z-index: 400;
}

ul.timeline>li {
    margin: 25px 0 25px -10px;
    padding-bottom: 5px;
    transition: 0.5s ease;
    position: relative;
}

ul.timeline>li>.dot {
    position: absolute;
    top: 14px;
    left: -16px;
    background: #bec0cc;
    background-color: #bec0cc;
    width: 14px;
    height: 1.5px;
    z-index: 400;
    transition: 0.3s ease;
    opacity: 0;
}

ul.timeline>li>.dot.active {
    opacity: 1;
}

ul.timeline>li a {
    font-size: 18px;
    text-decoration: none;
    color: #8f8f8f;
    font-weight: 500;
    transition: .5s ease-in-out;
}

ul.timeline>li a.active {
    padding: 20px 50px 20px 43px;
    width: 100%;
    background: #fff;
    background-color: #fff;
    border-radius: 10px;
    color: rgb(36, 72, 252) !important;
    font-weight: 700;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


/* ul.timeline>li:nth-child(3):hover a,
ul.timeline>li:nth-child(4):hover a,
ul.timeline>li:nth-child(5):hover a,
ul.timeline>li:nth-child(6):hover a,
ul.timeline>li:nth-child(7):hover a, */


/* ul.timeline:hover>li:nth-child(2) a {
    padding: 0 0;
    background: #fff;
    background-color: #fff;
    color: #8f8f8f;
    font-weight: 700;
    box-shadow: none;
} */

ul.timeline>li a img {
    position: absolute;
    left: 0;
    bottom: 25%;
    width: 8%;
    visibility: hidden;
    transform: scale(0);
    transition: 0.7s ease-in-out;
    margin: 0 15px 0 15px;
    pointer-events: none;
}

ul.timeline>li a.active img {
    visibility: visible;
    transform: scale(1);
}


/* ul.timeline:hover>li:nth-child(2) a img {
    visibility: hidden;
    transform: scale(0);
} */

ul.timeline>li:nth-child(n)::before {
    content: ' ';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: #2D3BA9;
    top: 12px;
    left: -24px;
    width: 5px;
    height: 5px;
    z-index: 400;
}

ul.timeline>li:nth-child(n)::after {
    content: ' ';
    position: absolute;
    border: 1px solid #4954aa;
    border-radius: 50%;
    top: 10px;
    left: -26px;
    height: 9px;
    width: 9px;
}

#skills .screens .skill_bg {
    background-image: url("../assets/images/graphics/skills-bg2.png");
    width: 90%;
    height: 90%;
    background-size: cover;
    object-fit: cover;
    /* background-position: right 100% bottom 100%; */
    border-radius: 10px;
    box-shadow: 0 6px 33px rgba(0, 0, 0, 0.14);
    position: relative;
    opacity: 0;
    transform: translateY(140px);
}


/* #skills .screens .skill_bg .show {
    opacity: 1;
    transform: translateY(0);
} */

#skills .screens .skill_bg .size {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -9;
    padding-top: 50px;
}

#skills .screens .skill_bg .size .small-p {
    width: 80%;
    margin: auto;
    padding-bottom: 10px;
}

#skills .screens .skill_bg .size #blur {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

#skills .screens .blocks {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
}

#skills .screens .blocks a {
    text-decoration: none;
    background: #fff;
    opacity: 0.8;
    padding: 12px 60px;
    font-size: 14px;
    color: rgb(33, 49, 177);
    font-weight: 800;
    line-height: 2;
    text-align: center;
    margin: 3px;
    border-radius: 10px;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
}

#skills .screens .blocks a:nth-child(1) {
    margin-left: 60px;
}

#skills .screens .blocks a:nth-child(2) {
    color: #57bf2e;
}

#skills .screens .blocks a:nth-child(3) {
    margin-left: 25px;
    color: #7e1bda;
}

#skills .screens .blocks a:nth-child(4) {
    color: #221b28;
}

#skills .screens .blocks a:nth-child(5) {
    margin-left: 40px;
    color: #b77a79;
}

#skills .screens .blocks a:nth-child(6) {
    color: #ff7e26;
}

#skills .screens .small-box {
    display: none;
    position: absolute;
    left: 10%;
    /* go left 75% */
    top: -12%;
    /* down to 22% */
    width: 170px;
    /* stretch to 270px */
    height: 70px;
    /* fold to 350px */
    z-index: 111;
    background: #fff;
    box-shadow: 0 6px 33px rgba(0, 0, 0, 0.14);
    border-radius: 19px;
}

#skills .screens .small-box #hide {
    display: none;
    opacity: 0;
    visibility: hidden;
}

#skills .screens .small-box h4 {
    color: #79d0e3;
}

#skills .screens .small-box p {
    width: 80%;
    margin: auto;
    text-align: center;
    color: d6d6d6;
    font-weight: 500;
}

#skills .screens .small-box .apps {
    width: 70%;
    margin: auto;
}

#skills .screens .small-box .apps img {
    width: 15%;
    margin: 12px 15px;
}


/* Team Section */

#team {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
}

#team .textmain {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px;
}

#team .team-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 100%;
    height: 250px;
    margin: auto;
}

#team .team-img div {
    margin: 0 15px;
    text-align: center;
    position: relative;
}


/* #team .team-img div .team-img-box {
    width: 120px;
    height: 120px;
    box-shadow: 2px 9px 30px rgba(0, 0, 0, 0.19);
    border-top-right-radius: 23px;
    border-bottom-left-radius: 23px;
    transition: 0.4s ease;
} */

.team-img-box {
    width: 120px;
    height: 120px;
    box-shadow: 2px 9px 30px rgba(0, 0, 0, 0.19);
    border-top-right-radius: 23px;
    border-bottom-left-radius: 23px;
    transition: 0.4s ease;
}


/* .changewh {
    width: 160px;
    height: 170px;
    box-shadow: 2px 9px 30px rgba(0, 0, 0, 0.19);
    border-top-right-radius: 23px;
    border-bottom-left-radius: 23px;
    transition: 0.4s ease;
} */

#team .team-img div:nth-child(1):hover .team-img-box,
#team .team-img div:nth-child(1):active .team-img-box,
#team .team-img div:nth-child(1):focus .team-img-box {
    width: 160px;
    height: 170px;
    border-top-right-radius: 33px;
    border-bottom-left-radius: 33px;
}

#team .team-img div:nth-child(2) .team-img-box {
    width: 160px;
    height: 170px;
    border-top-right-radius: 33px;
    border-bottom-left-radius: 33px;
}

#team .team-img div:nth-child(3):hover .team-img-box,
#team .team-img div:nth-child(3):active .team-img-box,
#team .team-img div:nth-child(3):focus .team-img-box {
    width: 160px;
    height: 170px;
    border-top-right-radius: 33px;
    border-bottom-left-radius: 33px;
}

#team .team-img div .team-img-box img {
    width: 100%;
    height: 100%;
    padding: 3px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    border-top-right-radius: 23px;
    border-bottom-left-radius: 23px;
    opacity: 0.5;
    transition: 0.3s ease;
    cursor: pointer;
}

#team .team-img div .team-img-box img:hover {
    opacity: 1;
}

#team .team-img div:nth-child(2) .team-img-box img {
    border-top-right-radius: 33px;
    border-bottom-left-radius: 33px;
    opacity: 1;
}

#team .team-img div .team-img-box::before {
    position: absolute;
    top: 3px;
    left: 3px;
    content: " ";
    background-image: url("../assets/images/team/stripe.png");
    width: 7px;
    height: 60px;
    z-index: 9;
}

#team .member-details {
    box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.12);
    width: 860px;
    height: 415px;
    z-index: 260;
    border-top-right-radius: 19px;
    margin-right: 7vw;
    position: relative;
}

#team .member-details .text {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
    padding: 30px 25px 30px 25px;
    position: relative;
}

#team .member-details .text h3 {
    color: #474747;
    font-size: 26px;
    margin-bottom: 4px !important;
    font-weight: 500;
}


/* 
#team .member-details #name {}

#team .member-details #designation {}

#team .member-details #summary {} */

#team .member-details .text .small-p {
    color: #1828a0;
    margin-top: 0 !important;
}

#team .member-details .text .blocks {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
}

#team .member-details .text .blocks a {
    text-decoration: none;
    background: #d8e1ff;
    opacity: 0.8;
    padding: 6px 18px;
    font-size: 14px;
    color: rgb(33, 49, 177);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    margin: 3px;
    border-radius: 8px;
    /* box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08); */
}

#team .member-details .text .blocks a:nth-child(1) {
    padding: 6px 35px;
}

#team .member-details .text .blocks a:nth-child(2) {
    background: #c9fff8;
}

#team .member-details .text .blocks a:nth-child(3) {
    background: #f1f1f1;
}

#team .member-details .text .blocks a:nth-child(4) {
    background: #e7f2ff;
}

#team>div.member-details>div.text>a:nth-child(5) {
    text-decoration: none;
    color: #3c52f4;
    margin-top: 35px !important;
}

#team .member-details .text .small-p img {
    width: 16%;
}

#team .member-details .text .secondary-btn {
    position: absolute;
    right: 30px;
    bottom: 25px;
}

#team .member-details .team-head {
    position: absolute;
    top: 50px;
    left: -140px;
    width: 300px;
    height: 330px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

#team .member-details .team-head img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition-delay: all 2s;
}

#team .member-details .team-head::before {
    position: absolute;
    top: 0;
    left: 0x;
    content: " ";
    background-image: url("../assets/images/team/stripe.png");
    width: 9px;
    height: 65px;
    z-index: 9;
}


/* Process Section */

#process {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#process #bg-process {
    position: absolute;
    top: -10%;
    right: 0;
    width: 100%;
    height: 70%;
    background-size: cover;
    box-sizing: border-box;
    object-fit: cover;
    z-index: -99;
}

#process .main-btn {
    z-index: 99;
}

#timeline-wrap {
    padding: 30px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#timeline-wrap .marker {
    margin: 0 30px;
}

#timeline-wrap .marker .process-text {
    font-weight: 400;
}

#line-draw2 {
    position: relative;
}

#line-draw2::before {
    content: " ";
    position: absolute;
    background-color: #aabbc4;
    background: #aabbc4;
    width: 0;
    height: 2px;
    top: 30px;
    left: 160px;
    margin: auto;
    opacity: 1;
    z-index: -5;
}

.marker-box2 {
    opacity: 0;
    width: 330px;
    transition: 0.3s ease;
}

#line-draw3 {
    position: relative;
}

#line-draw3::before {
    content: " ";
    position: absolute;
    background-color: #aabbc4;
    background: #aabbc4;
    width: 0;
    height: 2px;
    top: 30px;
    left: 170px;
    margin: auto;
    opacity: 1;
    z-index: -5;
}

.marker-box3 {
    opacity: 0;
    width: 330px;
    transition: 0.3s ease;
}

.marker-box4 {
    opacity: 0;
    width: 330px;
    transition: 0.3s ease;
}


/* 
#timeline::before {
    content: " ";
    position: absolute;
    background-color: #aabbc4;
    background: #aabbc4;
    width: 0;
    height: 1px;
    top: 30px;
    left: 220px;
    margin: auto;
    opacity: 1;
    z-index: -5;
}



.marker {
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.3s ease;
} */

.marker p {
    font-weight: 800;
    color: #313131;
    margin-top: 10px;
    font-size: 16px;
}

.marker img {
    width: 65px;
}

#newtimeline-wrap {
    display: none;
}


/* FAQs section */

#faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#faqs .text {
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

#faqs #bg-faqs {
    position: absolute;
    top: -15%;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -5;
}

#faqs .faq-box {
    width: 85%;
    height: 440px;
    box-shadow: 0 22px 63px rgba(0, 0, 0, 0.14);
    border-radius: 25px;
    padding: 5% 3% 5% 5%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: #fff;
}

#faqs .faq-box .cr {
    width: 100px;
    height: 7px;
    position: absolute;
    text-align: center;
    color: #f0f0f0;
}


/* Positions */

.cr-top {
    top: 10px;
}

.cr-left {
    left: -44px;
}

.cr-top1 {
    top: 10px;
}

.cr-left1 {
    left: -35px;
}

.cr-bottom {
    bottom: 10px;
}

.cr-right {
    right: -44px;
}

.cr-bottom1 {
    bottom: 10px;
}

.cr-right1 {
    right: -35px;
}


/* Rotations */

.cr-top.cr-left,
.cr-bottom.cr-right {
    transform: rotate(-45deg);
}

.cr-top1.cr-left1,
.cr-bottom1.cr-right1 {
    transform: rotate(-45deg);
}

.cr-blue {
    background-color: #142289;
}

.cr-green {
    background-color: #51eca8;
}

.accordion-header>button {
    font-size: 20px;
    color: #142289 !important;
    font-weight: 700;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.accordion-item .accordion-button {
    border: none !important;
}

.accordion-button>i {
    font-size: 22px;
    color: #c2c3c8;
    transition: transform .2s ease-in-out;
    margin-right: 3%;
    font-stretch: 200%;
}

.accordion-button:not(.collapsed)>i {
    transform: rotate( -180deg);
}

#faqs .faq-box .accordion-button::after {
    display: none;
}

.accordion-collapse>div {
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-collapse>div>p {
    margin-left: 5%;
}


/* Categroies section */

#categories {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
}

#categories #bg-category {
    position: absolute;
    top: 10%;
    left: -7%;
    width: 50%;
    background-size: cover;
    box-sizing: border-box;
    object-fit: cover;
    z-index: -88;
}

#categories .cat-des {
    width: 80%;
}

#categories h1 {
    font-size: 2.2rem;
}

#categories>div>div.subcat>div>div:nth-child(n) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
}

#categories>div>div.subcat>div>div:nth-child(n)>a {
    text-decoration: none;
    font-size: 16px;
    color: #8f8f8f;
    font-weight: 400;
    padding: 6px 0;
}


/* CTA section */

#cta {
    padding: 0 5.5vw;
    width: 100%;
    height: 30vh;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right, #c5cbfc, #c2c8fc, #bec5fc, #bbc2fb, #b8bffb, #b7befb, #b7befb, #b6bdfb, #b8bffb, #b9c1fc, #bbc2fc, #bdc4fc);
}

#cta .shapes::before {
    content: " ";
    width: 250px;
    height: 250px;
    background: #ccd1fd;
    position: absolute;
    top: -150px;
    right: -100px;
    transform: rotate(220deg);
    border-radius: 55% 45% 55% 45% / 40% 56% 44% 60%;
    animation: rotate 20s ease-in-out infinite alternate-reverse both;
}

@keyframes rotate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    38% {
        transform: scale(0.8, 1) rotate(120deg);
    }
    40% {
        transform: scale(0.8, 1) rotate(190deg);
    }
    78% {
        transform: scale(1.3) rotate(260deg);
    }
    80% {
        transform: scale(1.3) rotate(320deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

#cta .row {
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#cta p {
    color: #60637e;
}

#cta .cta-btn svg {
    animation: myAnim 8s ease-in-out 0s infinite alternate-reverse forwards;
}

@keyframes myAnim {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60% {
        transform: translateX(10px);
    }
    80% {
        transform: translateX(8px);
    }
    90% {
        transform: translateX(-8px);
    }
}

#cta .cta-btn a {
    padding: 13px 23px;
    background-image: linear-gradient(to right bottom, #536cfc, #5173fa, #5179f8, #537ff5, #5685f2, #538bf0, #5391ee, #5596eb, #549de8, #57a3e5, #5ea9e1, #68aedc);
}


/* Pros Section */

#pros {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
}

#pros .text {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
}

#pros .pro-family {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

#pros .pro-family .pro-box {
    position: relative;
}

#pros .pro-family .pro-box .pro-img {
    width: 90px;
    height: 90px;
    line-height: 80px;
    background: none;
    position: relative;
    /* background: #3c52f4; */
}

#pros .pro-family .pro-box .pro-img img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: 0.3s ease;
    /* margin: auto; */
    box-shadow: 0 2px 25px rgba(240, 236, 236, 0.05);
}

#pros .pro-family .pro-box:hover .pro-img img:nth-child(3) {
    transform: scale(1.1);
}

#pros .pro-family .pro-box:hover .pro-img img:nth-child(2) {
    transform: rotate(-30deg) translateY(-5px) scale(1.2);
}

#pros .pro-family .pro-box:hover .pro-img img:nth-child(1) {
    transform: rotate(-45deg) translateY(-7px) scaleY(1.3);
}

#pros .pro-family .pro-box p {
    margin-top: 10px;
    font-weight: 600;
    color: #000;
}


/* Blog Section */

#blog {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 7vw;
    position: relative;
    border-top-right-radius: 25px;
}

#blog #bg-blog {
    position: absolute;
    bottom: -20%;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -99;
}

#blog .blog-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

#blog .main-blog {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
    padding: 0;
    box-shadow: 0 32px 83px rgba(0, 0, 0, 0.14);
    border-bottom-left-radius: 25px;
    background: #fff;
}

#blog .main-blog:nth-child(1) {
    width: 49%;
    position: relative;
}

#blog .main-blog .main-img::before {
    position: absolute;
    top: 250px;
    left: 40px;
    content: " ";
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background-image: url("../assets/images/blog/profile.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 5px 6px 20px 0px rgba(0, 0, 0, 0.3);
}

#blog .main-blog .main-img {
    width: 100%;
}

#blog .main-blog .main-img img {
    width: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    height: 300px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

#blog .main-blog .main-text {
    padding: 60px 20px 20px 20px;
}

#blog .main-blog p {
    margin-bottom: 6px;
}

#blog .main-blog h3 {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 600;
}

#blog .main-blog p.blue {
    color: #1124ad;
    font-weight: 600;
}

#blog .main-blog .main-text .blog-btn a:nth-child(1) {
    text-decoration: none;
    color: #82c1f7;
    padding: 7px 22px;
    border: 1px solid #82c1f7;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

#blog .main-blog .main-text .blog-btn a:nth-child(2) {
    text-decoration: none;
    color: #76d646;
    padding: 7px 22px;
    border: 1px solid #76d646;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

#blog #blog-key {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 20px 25px 20px;
}

#blog #blog-key a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #636363;
}

#blog #blog-key a:nth-child(2) {
    color: #1124ad;
}


/* Sub Blogs */

#blog .side-blog {
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

#blog .side-blog .sub-blog {
    text-align: start;
    padding: 35px 30px 0 30px;
    box-shadow: 0 35px 30px rgba(0, 0, 0, 0.14);
    border-bottom-left-radius: 25px;
    position: relative;
    background: #fff;
}

#blog .side-blog .sub-blog:nth-child(1) {
    margin-bottom: 40px;
}

#blog .side-blog .sub-blog .main-img img {
    width: 135px;
    height: 130px !important;
    display: block;
    background-size: cover;
    background-position: center;
    height: auto;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

#blog .side-blog .sub-blog p {
    margin-bottom: 6px;
    font-size: 16px;
}

#blog .side-blog .sub-blog h3 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
}

#blog .side-blog .sub-blog p.blue {
    color: #1124ad;
    font-weight: 600;
}

#blog .side-blog .sub-blog .blog-btn a:nth-child(1) {
    text-decoration: none;
    color: #82c1f7;
    padding: 7px 22px;
    border: 1px solid #82c1f7;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

#blog .side-blog .sub-blog .blog-btn a:nth-child(2) {
    text-decoration: none;
    color: #76d646;
    padding: 7px 22px;
    border: 1px solid #76d646;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

#blog .side-blog .sub-blog #blog-key {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center;
    padding: 35px 0 20px 0;
}

#blog .side-blog .sub-blog:nth-child(2)::before {
    position: absolute;
    content: "\f178";
    bottom: -45px;
    right: 0;
    background: #fff;
    padding: 5px 23px;
    border-radius: 5px;
    font-size: 18px;
    color: #2f56ee;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    cursor: pointer;
}


/* Footer section */

#footer {
    width: 100%;
    padding: 0 5.5vw;
    position: relative;
    background-image: linear-gradient(to top, #3b4ccd, #4052d8, #4557e3, #495dee, #4e63f9);
}

#footer h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
}

#footer hr {
    color: #fff;
}

#footer .navigation ul li {
    list-style: none;
    padding: 5px 0;
}

#footer .navigation ul li i {
    font-size: 12px;
    font-weight: 200;
}

#footer .navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #ffff;
    font-weight: 300;
}

#footer .payment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#footer .payment p {
    color: #fff;
    font-size: 17px;
}

#footer .payment img:nth-child(1) {
    width: 50%;
    margin-bottom: 25px;
}

#footer .payment img:nth-child(2) {
    width: 70%;
}

#footer .social .sub input {
    width: 230px;
    height: 36px;
    outline: none;
    border: none;
    padding: 0 10px;
    margin-right: 5px;
}

#footer .social .sub {
    margin-top: 40px;
}

#footer .social .sub a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    background: #51c9c8;
    padding: 8px;
}

#footer .social .profile {
    margin-top: 20px;
}

#footer .social .profile a {
    color: #fff;
    font-size: 28px;
    margin-right: 30px;
}

#footer .copyright p {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}

#footer>div.copyright>div>img {
    width: 40% !important;
}


/* @media (min-width: 2000px) {
    nav .bg-main {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 120vh !important;
        box-sizing: border-box;
        object-fit: cover;
        z-index: -99;
    }
}

@media (min-width: 1980px) {
    nav .bg-main {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 90% !important;
        box-sizing: border-box;
        object-fit: cover;
        z-index: -99;
    }
}

@media (min-width: 1780px) {
    nav .bg-main {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 85% !important;
        box-sizing: border-box;
        object-fit: cover;
        z-index: -99;
    }
} */

@media (min-width: 2559px) {
    ul.timeline>li a img {
        bottom: 25%;
        width: 4% !important;
        margin: 0 15px 0 15px;
    }
}

@media (min-width: 1920px) {
    nav .navigation .nav-links .wrapper ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-end !important;
        align-items: center;
    }
    nav .navigation .nav-links .wrapper ul li {
        margin-left: 30px !important;
    }
    ul.timeline>li a img {
        bottom: 25%;
        width: 5%;
        margin: 0 15px 0 15px;
    }
}

@media (min-width: 1439px) {
    body {
        background-size: 100%;
    }
    #hero {
        margin-top: 260px;
    }
    ul.timeline .line {
        background-color: #bec0cc;
        background: #bec0cc;
        top: 10px;
        left: 0;
        width: 1.5px;
        height: 290px;
        z-index: 400;
    }
    ul.timeline>li>.dot {
        content: " ";
        position: absolute;
        top: 14px;
        left: -16px;
        background: #bec0cc;
        background-color: #bec0cc;
        width: 14px;
        height: 2px;
        z-index: 400;
        transition: 0.3s ease;
        opacity: 0;
    }
    ul.timeline>li a img {
        bottom: 25%;
        width: 6% !important;
        margin: 0 15px 0 15px;
    }
}

@media (min-width: 1366px) {
    nav .bg-main {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 75%;
        box-sizing: border-box;
        object-fit: cover;
        z-index: -99;
    }
    /* nav .navigation .nav-links .wrapper ul {
        justify-content: flex-end !important;
        align-items: center;
    } */
    nav .navigation .nav-links .wrapper ul li {
        display: flex;
        flex-direction: row;
        justify-content: space-between !important;
        margin-left: 10px;
    }
    #hero {
        padding: 0 6vw;
        margin-top: 140px;
    }
    #hero .text P {
        width: 80%;
    }
    #partner {
        padding: 0 6vw;
    }
    #partner .partner-row .part-img img {
        width: 15%;
    }
    #partner .partner-row {
        align-items: center !important;
    }
    #partner .partner-row h6 {
        font-size: 1.5rem;
        font-weight: 800;
        width: 18%;
    }
    #skills {
        padding: 0 0;
    }
    ul.timeline>li a img {
        bottom: 25%;
        width: 7%;
        margin: 0 15px 0 15px;
    }
    #skills #bg-skill {
        bottom: 20%;
        right: 0;
        background-size: auto;
    }
    #skills>div.row {
        width: 80%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #skills>div.row>div.screens {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
    #skills #bg-skill img {
        width: 100%;
        height: 200%;
    }
    #skills .skill-des {
        width: 65%;
    }
    #skills .screens .skill_bg {
        width: 700px
    }
    #skills .screens .skill_bg .size {
        width: 90%;
        padding-top: 50px;
    }
    #team {
        padding-top: 6vw !important;
    }
    #team .member-details {
        width: 860px;
        height: 415px;
        margin: auto;
        transform: translateX(50px);
    }
    #timeline::before {
        width: 75%;
        height: 1px;
        top: 30px;
        left: 270px;
    }
    #faqs {
        padding-top: 6vw !important;
    }
    #faqs #bg-faqs {
        top: -15%;
        right: 0;
    }
    #faqs #bg-faqs img {
        width: 100%;
        height: 120%;
    }
    #faqs .faq-box {
        width: 90%;
        height: 440px;
        padding: 4% 3% 5% 5%;
    }
    #categories {
        width: 90%;
        padding: 0 0;
        margin: auto;
    }
    #cta {
        height: 25vh;
    }
    #cta .row {
        width: auto !important;
        margin: auto;
    }
    #pros {
        width: 90%;
        margin: auto;
        padding: 4vw 0 0 0;
    }
    #blog {
        padding: 4vw 0 0 0;
    }
    #blog #bg-blog {
        bottom: -20%;
        right: 0;
    }
    #blog #bg-blog img {
        width: 100%;
        height: 100%;
    }
    #blog .blog-box {
        width: 90%;
        margin: auto;
    }
    #blog .side-blog .sub-blog .main-img img {
        width: 80%;
        height: 130px !important;
    }
    #footer {
        padding: 0 0;
    }
    #footer>div.row {
        width: 90%;
        margin: auto;
    }
}

@media only screen and (max-width: 1237px) {
    .abtn {
        background: #fff;
        color: #5d86f1 !important;
        box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
        padding: 13px 20px;
        border-radius: 10px;
    }
    .abtn:hover {
        background: #fff;
        color: #5d86f1 !important;
        box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
    }
    .wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 100%;
        background: rgba( 174, 194, 255, 0.25);
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.17);
        backdrop-filter: blur( 7.5px);
        -webkit-backdrop-filter: blur( 7.5px);
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18);
        transition: all 0.6s ease-in-out;
        z-index: 9999;
    }
    #active:checked~.wrapper {
        right: 0;
    }
    .menu-btn {
        position: fixed;
        z-index: 99999;
        right: 20px;
        top: 20px;
        height: 50px;
        width: 60px;
        text-align: center;
        line-height: 50px;
        font-size: 20px;
        cursor: pointer;
        border-radius: 5px;
        background: linear-gradient(90deg, #7b59f3, #6442ad);
        transition: all 0.3s ease-in-out;
    }
    .menu-btn span,
    .menu-btn:before,
    .menu-btn:after {
        content: "";
        position: absolute;
        top: calc(50% - 1px);
        left: 30%;
        width: 40%;
        border-bottom: 2px solid #fff;
        transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .menu-btn:before {
        transform: translateY(-8px);
    }
    .menu-btn:after {
        transform: translateY(8px);
    }
    .close {
        z-index: 1;
        width: 100%;
        height: 100%;
        pointer-events: none;
        transition: background .6s;
    }
    #active:checked+.menu-btn span {
        transform: scaleX(0);
    }
    #active:checked+.menu-btn:before {
        transform: rotate(45deg);
        border-color: #fff;
    }
    #active:checked+.menu-btn:after {
        transform: rotate(-45deg);
        border-color: #fff;
    }
    nav .nav-links .wrapper ul {
        height: 90px;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    nav .navigation .nav-links .wrapper ul {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    .wrapper ul {
        position: absolute;
        top: 20%;
        left: 65%;
        height: 90%;
        transform: translate(-50%, -50%);
        list-style: none;
        text-align: center;
    }
    .wrapper ul li {
        margin: 15px 10px;
    }
    .wrapper ul li {
        opacity: 0;
        transition: all 0.3s ease;
        transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    input[type="checkbox"] {
        display: none;
    }
    #active:checked~.wrapper ul li {
        opacity: 1;
    }
    .wrapper ul li {
        transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateX(100px);
    }
    #active:checked~.wrapper ul li {
        transform: none;
        transition-timing-function: ease, cubic-bezier(.1, 1.3, .3, 1);
        transition-delay: .6s;
        transform: translateX(-100px);
    }
    #engine.scrolled {
        background: #fff;
        box-shadow: 0px 7px 14px 0px rgb(0 0 0 / 11%);
    }
    nav #engine .requirements:nth-child(n)>.box>select.scrolled {
        background: #fff;
        /* color: #a5a4af; */
    }
    nav #engine .search input.scrolled {
        background: #fff;
    }
    nav #engine .search input.scrolled::placeholder {
        background: #fff;
    }
    #loginBtn i {
        background: rgb(123, 127, 241);
        color: #fff;
    }
}

@media only screen and (max-width: 769px) {
    body {
        background-size: 160%;
    }
    nav {
        margin: 0 1vw;
    }
    nav .navigation {
        padding: 1vw 2vw !important;
    }
    #navigation.scrolled {
        padding: 1vw 5.5vw;
    }
    nav .navigation .logo.scrolled {
        width: 30%;
    }
    nav .navigation .logo.scrolled img {
        width: 100%;
    }
    nav .navigation .logo {
        width: 40%;
        margin-right: 0;
    }
    nav #engine .search input.scrolled {
        background: #fff;
    }
    .menu-btn {
        right: 20px;
        top: 15px;
        height: 50px;
        width: 60px;
    }
    #hero {
        margin-top: 3rem;
        flex-direction: column-reverse;
        justify-content: center;
        padding: 0 3vw;
    }
    #hero .text {
        text-align: center;
        width: 100%;
        padding-top: 20px;
    }
    #hero .text p {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-bottom: 15px;
    }
    #hero>div.img {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }
    #hero>div.img>img {
        width: 60%;
        margin: 0 !important;
        padding-left: 0;
    }
    #hero .bg-main {
        display: none;
    }
    #partner {
        padding: 0 3vw;
        margin-top: 6vw !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #partner .graphics1 {
        left: -20px;
        top: -40px;
        width: 250px;
        height: 300px;
    }
    #partner .partner-row {
        flex-wrap: wrap;
    }
    #partner .partner-row h6 {
        width: 100%;
    }
    #partner .partner-row .part-img {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        /* margin: 0 30px; */
    }
    #partner .partner-row .part-img img {
        width: 18%;
        margin: 0 0 0 0;
    }
    #skills {
        padding: 0 3vw;
        position: relative;
    }
    #skills .skill-des {
        width: 90%;
    }
    #skills ul.timeline {
        margin-left: 220px;
    }
    ul.timeline>li a img {
        bottom: 25%;
        width: 5%;
        margin: 0 15px 0 15px;
    }
    #skills .screens .skill_bg .size {
        width: 75% !important;
    }
    #skills>div.row>div.screens>div>div.size>h4 {
        margin-top: 0px;
    }
    #skills>div.row>div.screens {
        width: 90%;
        margin: auto;
    }
    #skills .screens .blocks {
        margin-bottom: 30px;
        justify-content: center;
    }
    #skills .screens .blocks a:nth-child(1) {
        margin-left: 30px;
    }
    #skills .screens .blocks a:nth-child(3) {
        margin-left: 0;
    }
    #skills .screens .blocks a:nth-child(5) {
        margin-left: 0;
    }
    #skills .screens .blocks a {
        padding: 10px 30px;
        font-size: 12px;
        font-weight: 700;
        margin: 3px;
    }
    #skills .screens .small-box {
        position: absolute;
        left: 0;
        top: -18%;
        width: 220px !important;
        height: 70px;
    }
    #skills .screens .small-box .apps {
        width: 90%;
        margin: auto;
    }
    #team {
        padding: 0 3vw;
    }
    #team .textmain {
        width: 90%;
    }
    #team .member-details {
        width: 100%;
        height: 100%;
        margin-right: 0;
    }
    #team .member-details .text {
        width: 100%;
        padding: 260px 20px 30px 20px;
    }
    #team .member-details .team-head {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 200px;
        height: 220px;
    }
    #team .member-details .team-head img {
        width: 100%;
        height: 100%;
    }
    #timeline::before {
        width: 0;
        height: 5px;
        top: 30px;
        left: 120px;
    }
    #timeline-wrap {
        justify-content: space-between;
    }
    .marker-box2 {
        width: 200px;
    }
    #line-draw2::before {
        left: 120px;
    }
    .marker-box3 {
        width: 200px;
    }
    #line-draw3::before {
        left: 120px;
    }
    .marker-box4 {
        width: 200px;
    }
    #timeline-wrap .marker {
        margin: 0 20px;
    }
    #faqs #bg-faqs {
        top: -5%;
    }
    #faqs .text {
        width: 90%;
    }
    #faqs .faq-box {
        width: 90%;
        height: 500px;
        padding: 5% 3% 5% 5%;
        position: relative;
        overflow: hidden;
        z-index: 99;
        background: #fff;
    }
    .accordion-collapse>div>p {
        margin-left: 6%;
    }
    #categories {
        padding: 0 3vw;
        text-align: center;
    }
    #categories .cat-des {
        width: 90%;
        margin: auto;
        margin-bottom: 25px;
    }
    #categories>div>div.subcat>div>div:nth-child(n) {
        display: flex;
        justify-content: space-around !important;
        align-items: flex-start;
        text-align: start;
    }
    #cta {
        padding: 0 3vw;
        text-align: center;
    }
    #cta {
        padding: 25px 0;
    }
    #cta>div.row {
        justify-content: center !important;
        text-align: center;
        margin: 0;
    }
    #cta>div.anime-shape>svg {
        display: none;
    }
    #cta>div.row>div.cta-btn {
        justify-content: space-around !important;
        margin-bottom: 5px;
        width: 50%;
    }
    #cta>div.row>div.cta-btn #pros {
        padding: 0 3vw;
    }
    #pros {
        padding: 0 3vw;
    }
    #pros .text {
        width: 90%;
    }
    #pros .pro-family {
        justify-content: center;
    }
    #pros>div>div:nth-child(n) {
        margin: 20px;
    }
    #blog {
        padding: 0 3vw;
    }
    #blog>div.blog-box {
        flex-direction: column;
    }
    #blog>div.blog-box>div.main-blog {
        width: 95%;
        margin-bottom: 34px;
    }
    #blog>div.blog-box>div.side-blog {
        width: 90%;
    }
    #footer {
        padding: 0 3vw;
    }
    #footer>div.row>div.payment {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: start;
    }
    #footer>div.row>div.payment>div {
        display: flex;
        flex-direction: column;
    }
    #footer>div.row>div.payment>p {
        margin-bottom: 15px;
        margin-top: 20px;
    }
    #footer .payment img:nth-child(1) {
        width: 70%;
        margin-bottom: 25px;
    }
    #footer .payment img:nth-child(2) {
        width: 80%;
        margin-bottom: 25px;
    }
    #footer .social {
        margin-top: 20px;
    }
    #footer .social .sub {
        margin-top: 15px;
    }
    #footer>div.copyright>div>img {
        width: 15% !important;
    }
}

@media only screen and (max-width: 523px) {
    body {
        background-size: 290%;
    }
    /* Gloabal */
    .main-btn {
        font-size: 1rem;
        font-weight: 500;
        border-radius: 14px;
        padding: 17px 30px;
        box-shadow: 2.828px 2.828px 10px 0px rgba(0, 0, 0, 0.16);
    }
    .secondary-btn {
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 14px;
        padding: 12px 31px;
        box-shadow: 2.828px 2.828px 10px 0px rgba(0, 0, 0, 0.16);
    }
    .plain-btn {
        text-transform: uppercase;
        color: #5d86f1 !important;
        background: #fff;
        font-weight: 900;
        font-size: 10px;
        border-radius: 10px;
        padding: 13px 20px;
        box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
    }
    .abtn {
        color: #5d86f1 !important;
        background: #fff;
        font-weight: 900;
        font-size: 10px;
        border-radius: 10px;
        padding: 13px 20px;
        box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
    }
    h1 {
        font-size: 1.7rem;
    }
    h3 {
        font-weight: 600;
        font-size: 24px;
    }
    h3.light {
        font-weight: 500;
        font-size: 24px;
    }
    h6 {
        font-size: 18px;
    }
    nav {
        width: 100% !important;
        padding: 9vw 0vw;
        margin: 0 0;
        overflow: hidden !important;
        position: relative;
        background: #fff;
    }
    nav .bg-main {
        display: none;
    }
    nav .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding-right: 0 !important;
        padding-left: 10px !important;
        padding-top: 0 !important;
        padding-bottom: 11px !important;
        background: #fff;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    }
    nav .navigation .logo {
        width: 45% !important;
        margin-right: 0;
        margin-top: 5px;
    }
    nav .navigation .logo img {
        width: 100% !important;
    }
    .menu-btn {
        right: 20px;
        top: 15px;
        height: 50px;
        width: 60px;
    }
    .wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        height: 90%;
        width: 90%;
    }
    .wrapper ul {
        position: absolute;
        top: 45%;
        right: -75%;
        height: 90%;
    }
    nav .nav-links .wrapper ul {
        flex-wrap: wrap;
    }
    .wrapper ul li {
        margin: 15px 0;
    }
    .wrapper ul li {
        opacity: 0;
    }
    nav .navigation .nav-links {
        width: 0;
    }
    nav .navigation .nav-links .wrapper ul {
        height: 280px;
        display: flex;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
    nav .navigation .nav-links .wrapper ul li {
        list-style: none;
        margin-left: 0;
    }
    nav .navigation .nav-links .wrapper ul li .abtn {
        margin-left: 10px;
    }
    nav #engine {
        width: 270px;
        height: 190px;
        padding: 20px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #engine.scrolled {
        width: 270px;
        height: 190px;
    }
    nav #engine .requirements {
        position: relative;
        margin-bottom: 15px;
    }
    nav #engine .requirements .head {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    nav #engine .requirements .head::before {
        top: 45px;
        right: -70px;
        width: 200px;
        height: .5px;
    }
    nav #engine .requirements .head h5 {
        font-size: 12px;
        font-weight: 700;
        padding-right: 20px;
    }
    #engine>div.search>h5 {
        text-align: start;
    }
    nav #engine .requirements .head i {
        font-size: 14px;
        font-weight: 700;
        color: #7b7b7b;
    }
    nav #engine .requirements:nth-child(n)>.box>select {
        font-size: 15px;
        font-weight: bold;
        background: #fff;
    }
    nav #engine .search h5 {
        font-size: 12px;
        font-weight: 700;
    }
    nav #engine .search input {
        font-size: 15px;
        font-weight: bold;
        width: 100%;
    }
    nav #engine .search input::placeholder {
        font-size: 15px;
        font-weight: bold;
    }
    nav #engine .search-icon i {
        color: #5166ff;
        font-size: 20px;
        font-weight: bolder;
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    .plain-btn.scrolled {
        color: #5d86f1 !important;
        background: #fff;
    }
    nav #engine .search input.scrolled::placeholder {
        background: #fff;
    }
    #loginBtn {
        display: block;
        width: 100%;
        margin-left: 5px;
    }
    #hero {
        margin-top: 0;
        width: 100%;
        height: 100%;
        padding: 0 0;
        overflow: hidden !important;
        padding-bottom: 2rem;
    }
    #hero .text {
        margin-top: 100px;
        width: 90%;
    }
    #hero .text p {
        width: 100%;
    }
    #hero>div.img {
        width: 90%;
    }
    #hero>div.img>img {
        width: 90%;
        padding-left: 0;
    }
    #partner {
        width: 100%;
        padding: 0 0;
        margin-top: 8vw !important;
        overflow: hidden !important;
    }
    #partner .graphics1 {
        left: -40px;
        top: -10px;
    }
    #partner .partner-row {
        width: 90%;
        margin: auto;
    }
    #partner .partner-row h6 {
        width: 100%;
        margin-right: 0px !important;
        text-align: center;
    }
    #partner .partner-row .part-img {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap !important;
    }
    #partner .partner-row .part-img img {
        width: 27%;
    }
    #skills {
        padding: 0 0 0 0;
        width: 100%;
        overflow: hidden !important;
    }
    #skills .skill-des {
        width: 90%;
    }
    #skills .tree {
        width: 100%;
        margin-top: 0 !important;
        padding-top: 30px !important;
    }
    #skills ul.timeline {
        list-style-type: none;
        display: flex;
        overflow-x: scroll;
        -ms-overflow-style: none;
        padding-left: 0;
        margin-left: 10px;
        margin-bottom: 0;
        /* Internet Explorer 10+ */
        scrollbar-width: none;
        /* Firefox */
    }
    #skills ul.timeline::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }
    ul.timeline>li:nth-child(n)::before {
        display: none;
    }
    ul.timeline>li:nth-child(n)::after {
        display: none;
    }
    ul.timeline .line {
        display: none;
    }
    ul.timeline>li>.dot {
        display: none;
    }
    #skills ul.timeline li {
        margin: 15px 10px 12px 0;
        transition: 0.3s ease;
        background: none;
    }
    #skills ul.timeline li a {
        color: #2c2c2c;
        transition: 0.3s ease;
        border: 1px solid #745be7;
        padding: 10px 19px !important;
        border-radius: 19px;
        width: 100%;
        background: none;
        display: inline-block;
        font-size: 14px;
        line-break: auto;
        white-space: nowrap;
        background: transparent;
        box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.09);
    }
    /* #skills ul.timeline li a.active {
        color: #fff !important;
        background-color: #745be7 !important;
    } */
    #skills ul.timeline li a.active,
    #skills ul.timeline li a:focus {
        /* color: #fff !important;
        background-color: #745be7 !important; */
        color: #fff !important;
        background: #745be7;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    ul.timeline>li a img {
        display: none;
    }
    #skills>div.row>div.screens {
        width: 100%;
        padding-bottom: 300px;
    }
    #skills .screens .skill_bg {
        width: 90%;
        margin: 10px auto 0 auto !important;
    }
    #skills .screens .skill_bg .size {
        width: 100% !important;
        margin: auto;
    }
    #skills>div.row>div.screens>div>div.size>h4 {
        margin-top: 0;
    }
    #skills .screens .skill_bg .size .small-p {
        width: 90%;
    }
    #skills .screens .blocks {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        width: 100% !important;
        margin-bottom: 30px;
    }
    #skills .screens .blocks a {
        padding: 5px 20px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
    }
    #skillfive {
        display: none;
    }
    #skills .screens .blocks a:nth-child(1) {
        margin-left: 0;
    }
    #skills .screens .blocks a:nth-child(3) {
        margin-left: 0;
    }
    #skills .screens .blocks a:nth-child(5) {
        margin-left: 0;
    }
    #skills .screens .small-box {
        position: absolute;
        left: 0;
        top: 30%;
        width: 100% !important;
        height: 100% !important;
        /* opacity: 0;
        visibility: hidden; */
    }
    #skills .screens .small-box .apps {
        width: 95%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 10px !important;
    }
    #skills .screens .small-box .apps img {
        width: 40px;
        margin: 12px;
    }
    #skills .screens .small-box #hide {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    #team {
        padding: 0 0;
        width: 100%;
        margin: auto;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden !important;
    }
    #team .team-img {
        flex-direction: row;
        height: 200px;
    }
    .team-img-box {
        width: 110px !important;
        height: 110px !important;
        box-shadow: 2px 9px 30px rgba(0, 0, 0, 0.19);
        border-top-right-radius: 33px;
        border-bottom-left-radius: 33px;
        margin: 0 6px !important;
    }
    #team .team-img div {
        margin: 0 0;
    }
    #team .team-img div img:nth-child(n) {
        border-top-right-radius: 33px !important;
        border-bottom-left-radius: 33px !important;
    }
    #team .member-details {
        overflow: hidden;
        width: 95%;
        margin: auto;
    }
    #team .member-details .text {
        padding: 260px 15px 30px 15px;
    }
    #team .member-details .team-head {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 95%;
        overflow: hidden;
    }
    #team .member-details .text .secondary-btn {
        right: 15px;
        bottom: 25px;
    }
    #process {
        width: 100%;
        overflow: hidden !important;
    }
    #process #bg-process {
        bottom: 0;
        left: 0;
    }
    #process #timeline-wrap {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 0;
        padding-bottom: 30px;
        padding-top: 0;
    }
    /* #timeline-wrap .marker {
        margin: 0 0 0 0;
    }
    #timeline-wrap>div {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start;
        align-items: center;
        margin: 15px 0;
    }
    .marker p {
        margin: 0 0 0 20px !important;
        text-align: start;
    }
    #line-draw1::before {
       
        display: none;
    }
    #line-draw2::before {
        left: 30px;
        width: 2px;
    }
    #line-draw3::before {
        left: 30px;
        width: 2px;
    }
    .marker-box1 {
        width: 100%;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    .marker-box2 {
        width: 100%;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    .marker-box3 {
        width: 100%;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    .marker-box4 {
        width: 100%;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    #timeline-wrap .marker .process-text {
        padding-top: 10px;
    } */
    /* New work section for mobile */
    #newtimeline-wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: start;
        padding: 20px 0 30px 0;
    }
    #newtimeline-wrap {
        display: initial;
    }
    #newtimeline-wrap .newmarker {
        position: relative;
    }
    #newtimeline-wrap .newmarker-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    #newtimeline-wrap .newmarker-box p {
        font-weight: 800;
        color: #313131;
        margin: 0 0 0 20px !important;
        text-align: start;
        font-size: 16px;
    }
    #newtimeline-wrap .newmarker-box .process-text {
        font-weight: 400;
        padding-top: 10px;
    }
    #newtimeline-wrap .newmarker-box img {
        width: 65px;
    }
    #newtimeline-wrap .newmarker-box1 {
        visibility: hidden;
        opacity: 0;
        transition-delay: 0.4s;
    }
    #newtimeline-wrap .newmarker-box1.active {
        visibility: visible;
        opacity: 1;
    }
    #newtimeline-wrap .newmarker-box2 {
        visibility: hidden;
        transition-delay: 2s;
        opacity: 0;
    }
    #newtimeline-wrap .newmarker-box2.active {
        visibility: visible;
        opacity: 1;
    }
    #newtimeline-wrap .newmarker-box3 {
        visibility: hidden;
        transition-delay: 3.4s;
        opacity: 0;
    }
    #newtimeline-wrap .newmarker-box3.active {
        visibility: visible;
        opacity: 1;
    }
    #newline-draw1 {
        position: absolute;
        background-color: #aabbc4;
        background: #aabbc4;
        width: 2px;
        height: 0%;
        top: 30px;
        left: 30px;
        margin: auto;
        opacity: 1;
        z-index: -5;
        transition: height 1s ease;
        transition-delay: .8s;
        /* animation: linedraw 1.5s ease-in 0s 1 normal forwards; */
    }
    #newline-draw1.active {
        height: 100%;
    }
    #newline-draw2 {
        position: absolute;
        background-color: #aabbc4;
        background: #aabbc4;
        width: 2px;
        height: 0%;
        top: 30px;
        left: 30px;
        margin: auto;
        opacity: 1;
        z-index: -5;
        transition: height 1s ease;
        /* animation: linedraw 1.5s ease-in 0s 1 normal forwards; */
        transition-delay: 2.5s;
    }
    #newline-draw2.active {
        height: 100%;
    }
    #faqs {
        width: 100%;
        overflow: hidden !important;
        padding-bottom: 5rem !important;
        margin-bottom: 0 !important;
    }
    #faqs #bg-faqs {
        top: 0;
        right: 0;
        height: 200%;
    }
    #faqs .faq-box {
        width: 95%;
        height: 100%;
        padding: 5% 3% 5% 3%;
        position: relative;
        overflow: hidden;
        z-index: 99;
        background: #fff;
    }
    .accordion-item .accordion-button {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .accordion-collapse>div>p {
        margin-left: 0%;
    }
    #categories {
        padding: 0 0 48px 0 !important;
        text-align: center;
        width: 100%;
        margin: 0 0 !important;
        overflow: hidden !important;
    }
    #categories h1 {
        width: 90%;
        margin: auto;
    }
    #categories .cat-des {
        width: 90%;
        margin: auto;
        margin-bottom: 25px;
    }
    #categories>div.row>div.subcat>.row {
        width: 95%;
        margin: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: center;
    }
    #categories>div>div.subcat>div>div:nth-child(n) {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #categories>div>div.subcat>div>div:nth-child(n)>a {
        font-size: 14px;
    }
    #cta {
        width: 100%;
        height: 300px;
        padding: 30px 0;
        text-align: center;
        overflow: hidden !important;
    }
    #cta>div.row>div.cta-btn {
        margin-bottom: 0;
        width: 100%;
    }
    #cta>div.row>div.cta-btn #pros {
        padding: 0 3vw;
    }
    #pros {
        width: 100%;
        padding: 0 0;
        overflow: hidden !important;
    }
    #pros h1 {
        width: 90%;
        margin: auto;
    }
    #pros .pro-family {
        width: 100%;
        justify-content: center;
    }
    #pros>div>div:nth-child(n) {
        margin: 15px;
    }
    #blog {
        width: 100%;
        padding: 0 0 5rem 0 !important;
        overflow: hidden !important;
        margin-bottom: 0 !important;
    }
    #blog p {
        width: 90%;
        margin: auto;
    }
    #blog .main-blog .main-img img {
        height: 250px;
        object-fit: cover;
    }
    #blog .main-blog .main-img::before {
        top: 200px;
        left: 20px;
        box-shadow: 5px 6px 10px 0px rgb(0 0 0 / 10%);
    }
    #blog .main-blog .main-text {
        padding: 60px 15px 20px 15px;
    }
    #blog .side-blog .sub-blog {
        padding: 20px 15px 0 15px;
        box-shadow: 0 35px 30px rgb(0 0 0 / 14%);
        border-bottom-left-radius: 25px;
        position: relative;
        background: #fff;
    }
    #blog .side-blog .sub-blog .main-img img {
        width: 100%;
        height: 150px !important;
        object-fit: cover;
        margin-bottom: 15px;
    }
    #blog>div.blog-box.mt-4>div.main-blog.aos-init.aos-animate>div.main-text>p {
        margin: 0;
        width: 100%;
        font-size: 16px;
    }
    #blog>div.blog-box.mt-4>div.side-blog>div:nth-child(n)>div.main-text.col-lg-8.col-md-9.col-12.p-0>p {
        margin-left: 0;
        width: 100%;
        font-size: 16px
    }
    #footer {
        width: 100%;
        overflow: hidden !important;
    }
    #footer .navigation {
        text-align: center;
    }
    #footer .navigation ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    #footer .navigation ul li a {
        font-size: 14px;
    }
    #footer>div.row>div.payment {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    #footer .payment img:nth-child(1) {
        margin: 0 auto 25px auto;
    }
    #footer .payment img:nth-child(2) {
        margin: 0 auto 25px auto;
    }
    #footer>div.row.pt-5.pb-4>div.social.col-lg-4.col-md-6.col-12 {
        text-align: center;
        padding: 0;
    }
    #footer>div.row.pt-5.pb-4>div.social.col-lg-4.col-md-6.col-12>div.sub.d-flex.align-content-center.flex-wrap {
        display: flex !important;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #footer .social .profile a {
        color: #fff;
        font-size: 28px;
        margin: 0 13px;
    }
    #footer>div.copyright.row.d-flex.align-items-center.justify-content-between.pb-3>div.col-lg-3.col-md-4.col-12 {
        padding: 0;
        text-align: center;
    }
    #footer>div.copyright.row.d-flex.align-items-center.justify-content-between.pb-3>div.col-lg-3.col-md-5.col-12.d-flex.align-items-center {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media only screen and (max-width: 376px) {
    body {
        background-size: 300%;
    }
    /* Gloabal */
    .wrapper ul {
        top: 45%;
        right: -80%;
        height: 90%;
        flex-wrap: wrap;
    }
    .menu-btn {
        right: 15px;
        top: 13px;
        height: 50px;
        width: 60px;
    }
    .wrapper {
        top: 0;
        right: -100%;
        height: 100%;
        width: 100%;
    }
    nav .navigation .nav-links .wrapper ul {
        height: 280px;
        display: flex;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        flex-wrap: wrap !important;
    }
    nav #engine {
        width: 280px;
    }
    #engine.scrolled {
        width: 280px;
        height: 190px;
    }
    nav #engine .search-icon i {
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    ul.timeline>li a:hover {
        padding: 20px 30px 20px 43px;
        width: 100%;
        background: #fff;
        background-color: #fff;
        border-radius: 10px;
        color: rgb(36, 72, 252) !important;
        font-weight: 700;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    ul.timeline>li a img {
        position: absolute;
        left: 0;
        bottom: 25%;
        width: 9%;
        visibility: hidden;
        transform: scale(0);
        transition: 0.7s ease;
        margin: 0 15px 0 15px;
    }
    #navigation>div.nav-links>div>ul>li:nth-child(4) {
        position: relative;
        top: 10px;
    }
    ul.timeline>li a:hover {
        padding: 20px 30px 20px 43px;
        width: 100%;
        background: #fff;
        background-color: #fff;
        border-radius: 10px;
        color: rgb(36, 72, 252) !important;
        font-weight: 700;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    ul.timeline>li a img {
        position: absolute;
        left: 0;
        bottom: 25%;
        width: 9%;
        visibility: hidden;
        transform: scale(0);
        transition: 0.7s ease;
        margin: 0 15px 0 15px;
    }
    #hero .text {
        margin-top: 70px;
    }
    #categories>div>div.subcat>div>div:nth-child(n)>a {
        font-size: 13px;
    }
}