:root {
    --blue: #1e4596;
    --light-blue: #1b9efb;
    --blue2: #82abff;
    --yellow: #ff7300;
    --light-yellow: #dba500;
    --green: #005c86;
    --light-green: #9ec45d;
    --pink: #ff84c1;
    --purple: #9884ff;

    --white: #ffffff;
    --gray: #717171;
    --black-2: rgba(0, 0, 0, 0.6);
    --black-3: #2f2f2f;
}

.p-color {
    color: var(--black-3);
}

.font-size-18 {
    font-size: 18px;
}

.bg-height {
    height: 100vh;
    overflow-y: auto;
}

.row-reverse {
    flex-direction: row-reverse;
}

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

.green-icon i {
    padding-right: 25px;
    color: #07c807;
}

.red-icon i {
    padding-right: 25px;
    color: #ff0000;
}

.blue-icon i {
    padding-right: 5px;
    color: #1e4596;
    padding-top: 10px;
}

.bold {
    font-weight: 600;
}

/* font start */
@font-face {
    font-family: "Aptos";
    src: url("../fonts/APTOS-BLACK.TTF") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Aptos";
    src: url("../fonts/APTOS-LIGHT.TTF") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Aptos";
    src: url("../fonts/APTOS-SEMIBOLD.TTF") format("truetype");
    font-weight: 600;
    font-style: normal;
}


/* #### Generated By: http://www.cufonfonts.com #### */

/* @font-face {
  font-family: "Qanelas";
  font-style: normal;
  font-weight: normal;
  src: local("â˜º"), url("../fonts/QanelasBlack.otf") format("otf"),
    url("../fonts/QanelasBlackItalic.otf") format("otf"),
    url("../fonts/QanelasBold.otf") format("otf"),
    url("../fonts/QanelasBoldItalic.otf") format("otf"),
    url("../fonts/QanelasExtraBold.otf") format("otf"),
    url("../fonts/QanelasExtraBoldItalic.otf") format("otf"),
    url("../fonts/QanelasHeavy.otf") format("otf"),
    url("../fonts/QanelasHeavyItalic.otf") format("otf"),
    url("../fonts/QanelasLight.otf") format("otf"),
    url("../fonts/QanelasLightItalic.otf") format("otf"),
    url("../fonts/QanelasMedium.otf") format("otf"),
    url("../fonts/QanelasMediumItalic.otf") format("otf"),
    url("../fonts/QanelasRegular.otf") format("otf"),
    url("../fonts/QanelasRegularItalic.otf") format("otf"),
    url("../fonts/QanelasSemiBold.otf") format("otf"),
    url("../fonts/QanelasSemiBoldItalic.otf") format("otf"),
    url("../fonts/QanelasThin.otf") format("otf"),
    url("../fonts/QanelasThinItalic.otf") format("otf"),
    url("../fonts/QanelasUltraLight.otf") format("otf"),
    url("../fonts/QanelasUltraLightItalic.otf") format("otf");
} */

/* font end */
::selection {
    background: var(--blue);
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(var(--black), var(--black));
}

.overflw {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
}

p {
    line-height: 1.4;
}

.heavy {
    font-weight: 700;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: "Aptos", sans-serif;
}

.container {
    max-width: 1450px;
}

.menu-Bar {
    width: 30px;
    height: 26px;
    cursor: pointer;
    position: relative;
    z-index: 4;
    display: none;
    position: absolute;
    right: 30px;
    top: unset;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 11px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    bottom: 0;
}

.menu-Bar.open span {
    background: var(--white);
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* HEADER */
header {
    position: absolute;
    width: 100%;
    padding: 30px 0px;
    z-index: 1;
}

.menu a {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    display: block;
}

.header-content i {
    color: var(--white);
    font-size: 30px;
    font-style: normal;
}

.menu {
    display: flex;
    justify-content: space-between;
    justify-items: center;
}

.dropdown-content {
    float: left;
    overflow: hidden;
}

.dropdown-content {
    width: 170px;
    background: white;
    opacity: 0;
    position: absolute;
    border-radius: 10px 0 10px 10px;
    margin-top: 5px;
    visibility: hidden;
    right: 0;
    transition: all 0.4s;
    padding: 0.5rem;
}

.dropdown-content li {
    padding: 5px 5px;
}

.dropdown-content hr {
    margin-top: 0;
    margin-bottom: 0;
}

.dropdown-content li a {
    color: var(--black);
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content :hover {
    background-color: #ddd;
}

.header-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-btns .login {
    padding: 15px 30px;
}

.header-btns .login a {
    color: var(--white);
    font-size: 16px;
    transition: all 0.5s;
    font-weight: 500;
}

.header-btns .login:hover a {
    color: #dedede;
    background-color: transparent;
    border: 0px;
}

.header-btns .btn-b {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 5px;
}

.header-btns .btn-b:hover {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--blue);
}

/* INDEX PAGE */
/* Main Bannar */
.mainBanner {
    background-size: cover;
    background-position: center;
    position: relative;
    height: auto;
    width: 100%;
    padding: 150px 0 0;
    border-radius: 0px 0px 50px 50px;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 65px;
    font-weight: 800;
}

.banner-content p {
    font-weight: 300;
    padding: 30px 0;
}

.banner-btns {
    padding-bottom: 30px;
}

.banner-video video {
    border-radius: 20px;
    box-shadow: 0px 8px 13px #0c0c0c88;
}

.banner-video {
    margin-bottom: -300px;
    text-align: center;
}

/* host section */
.host-sec {
    padding-top: 300px;
}

.host-imgs {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.host-content h1 {
    color: var(--black);
    padding-right: 150px;
}

.host-content p {
    padding: 25px 0;
    color: var(--black-2);
    padding-right: 100px;
}

.host-content ul {
    display: flex;
    list-style: disc;
}

.host-content ul li {
    padding: 15px 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--blue);
}

/* built-section */
.build-sec {
    background-size: cover;
    background-position: center;
}

.build-content {
    text-align: center;
}

.b-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.b-cards>div:nth-child(even) {
    padding: 0 30px;
}

.b-card .card {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.b-card-content {
    padding: 60px 50px;
}

.b-card-content h2 {
    font-size: 45px;
    font-weight: 800;
    font-family: "Aptos", sans-serif;
    color: var(--blue);
}

.b-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    padding-top: 40px;
    padding-bottom: 20px;
}

.b-card-content p {
    padding: 0 25px;
}

/* platform-section */
.platform-hd h1 {
    color: var(--black);
}

.platform-hd p {
    color: var(--black-2);
    padding: 20px 0;
}

.platform-content .tabbing-list li {
    padding: 15px 0;
}

.platform-content .tabbing-list li a {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
}

.platform-content .tabbing-list li a:hover {
    color: var(--blue);
}

.platform-content .tabbing-list .current a {
    color: var(--blue);
    font-weight: 700;
}

.platform-content .tabbing-list .current a::before {
    content: " ";
    height: 6px;
    width: 6px;
    margin: 4px 4px;
    background-color: var(--blue);
    border-radius: 100%;
    display: inline-block;
}

.platform-btns {
    padding-top: 45px;
}

/* package-section */
.package-sec {
    background-size: cover;
    background-position: center;
}

.package-hd h1 {
    padding-bottom: 25px;
}

.package-content {
    text-align: center;
}

.p-card-hd {
    background-color: var(--blue);
    clip-path: polygon(0 50%, 0 0, 100% 0, 100% 50%, 50% 100%);
    text-align: center;
    padding: 50px 0 180px;
    border: 15px solid #f5f5f5;
    margin: 0 -15px;
    position: relative;
}

.p-card-hd h2 {
    font-size: 50px;
    font-weight: 800;
    font-family: "Aptos", sans-serif;
    color: var(--white);
    margin-bottom: 20px;
}

.p-card-list {
    font-size: 20px;
    letter-spacing: 3px;
    color: #4d4d4da1;
}

.p-card-list ul li {
    padding: 20px 0;
}

.p-card-list li:nth-child(even) {
    background-color: #f5f5f5;
}

.p-card-content .amount {
    font-size: 62px;
    font-weight: 500;
    color: var(--gray);
    padding: 40px 0;
}

.p-card-btn a {
    border-radius: 10px;
    padding: 15px 45px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.p-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
}

.p-cards>div {
    padding: 0 10px;
    width: 33.33%;
}

.p-card {
    background: var(--white);
    padding-bottom: 50px;
}

.seperator {
    width: 80%;
    height: 22px;
    background-color: #f5f5f5;
    position: absolute;
    bottom: 50px;
    left: -46px;
    transform: rotate(37deg);
}

.different-seperator {
    right: -46px;
    transform: rotate(-37deg);
    left: unset;
}

.p-card-green .p-card-hd {
    background-color: var(--green);
}

.p-card-yellow .p-card-hd {
    background-color: var(--yellow);
}

.p-card-green .p-card-btn a {
    background-color: var(--green);
}

.p-card-green .p-card-btn a:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}

.p-card-yellow .p-card-btn a {
    background-color: var(--yellow);
}

.p-card-yellow .p-card-btn a:hover {
    background-color: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.p-cards>div:nth-child(odd) {
    transform: scale(0.8);
}

/* launch section */
.launch-content h1 {
    color: var(--black);
}

.launch-content p {
    color: var(--black-2);
}

.launch-imgs {
    position: relative;
}

.launch-img-1 {
    position: absolute;
    right: 108px;
    bottom: 84px;
    height: 50%;
    width: 50%;
}

.launch-img-2 {
    position: absolute;
    top: 130px;
    left: 42px;
    height: 50%;
    width: 50%;
}

.launch-img-3 {
    position: absolute;
    right: 20px;
    top: 31px;
    height: 50%;
    width: 50%;
}

/* grow section */
.grow-sec {
    background-size: cover;
    background-position: center;
}

/* community section */
.community-content h1 {
    color: var(--black);
}

.community-content p {
    color: var(--black-2);
}

/* Client-section */
.client-sec {
    background-size: cover;
    background-position: center;
}

.client-content {
    text-align: center;
}

.product-slid {
    margin: 0 -15px;
}

.client-img {
    display: flex;
    justify-content: center;
}

.c-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    height: 100%;
    margin: 0 15px;
}

.c-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 25px;
    color: var(--blue);
}

.product-slid .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.product-slid .slick-dots li {
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-slid .slick-dots button {
    background-color: #f5f5f5;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    border: 0px;
    font-size: 0px;
}

.product-slid .slick-dots .slick-active button {
    background-color: var(--white);
    height: 16px;
    width: 16px;
}

/* INNER PAGES */
/* banner */
.banner {
    background-size: cover;
    background-position: center;
}

/* Inner Bannar */
.innerBanner {
    background-size: cover;
    background-position: center;
    position: relative;
    height: auto;
    width: 100%;
    padding: 150px 0 0;
    border-radius: 0px 0px 50px 50px;
}

/*////////////  login PAGE  /////////////*/
.form-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50%);
    backdrop-filter: brightness(90%);
    backdrop-filter: opacity(20%);
    border-radius: 10px;
    margin: 0 24px;
}

.form-hd {
    text-align: center;
}

.form-hd h1 {
    font-size: 45px;
}

.form-content {
    display: flex;
    flex-direction: column;
}

.form-content label {
    color: white;
    font-size: 18px;
    margin: 10px 20px;
}

#password-field {
    padding-right: 40px;
}

#password-field2 {
    padding-right: 40px;
}

.form-content input {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    backdrop-filter: brightness(80%);
    font-size: 18px;
    padding: 25px 20px;
    color: var(--white);
    width: 100%;
}

::placeholder {
    color: #ffffff9c;
}

.form-content input:focus {
    border: 1px solid white;
}

.form-box {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.form-box a {
    color: var(--white);
}

.remember-me-checkbox {
    color: var(--white);
}

.remember-me-checkbox input {
    background: none;
    border: var(--white);
    height: 15px;
    width: 15px;
}

.remember-me-checkbox label {
    margin: 0 5px;
}

.login-btns {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.login-btns .btn-a {
    padding: 25px 170px;
}

/*////////////  Password Recovery PAGE  /////////////*/

/*//////////// Verification Code PAGE  /////////////*/
.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
}

.form-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.otp-input-fields input[type="number"] {
    -moz-appearance: textfield;
}

.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-fields {
    display: flex;
    justify-content: space-between;
}

.otp-input-fields .otp__digit {
    height: 76px;
    width: 76px;
}

.otp-input-fields input {
    padding: 10px 25px;
    font-size: 30px;
}

.resend-code {
    text-align: right;
    padding-top: 15px;
}

.resend-code a {
    color: white;
}

/*////////////  Create Account PAGE  /////////////*/
.createaccount {
    text-align: center;
}

.createaccount a {
    color: var(--blue);
    text-decoration: underline;
    font-size: 18px;
    font-weight: 600;
}

.createaccount span {
    color: white;
}

.pass-eye span {
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
    z-index: 2;
    transform: translateY(-50%);
    color: #ffffff7c;
}

.pass-eye {
    position: relative;
}

.back-to-login {
    text-align: center;
}

.back-to-login a {
    color: var(--white);
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
}

.create-btn {
    padding-top: 10px;
    padding-bottom: 20px;
}

.create-btn .btn-a {
    padding: 25px 120px;
}

/*////////////  About Us PAGE  /////////////*/
/* deliver section */
.deliver-content h1 {
    color: var(--black);
}

.deliver-content p {
    color: var(--black-2);
}

/* Unique section */
.unique-sec {
    background-size: cover;
    background-position: center;
}

/* Specialist section */
.specialist-hd {
    text-align: center;
}

.specialist-hd h1 {
    color: var(--black);
}

.specialist-hd p {
    color: var(--black-2);
}

/* Values section */
.values-sec {
    background-size: cover;
    background-position: center;
}

.values-imgs {
    display: flex;
    margin: 0 -15px;
}

.values-imgs>div {
    padding: 0 15px;
}

/*////////////  Blog PAGE  /////////////*/
.blog-tabbing-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-tabbing-list li {
    padding: 0 20px 20px 20px;
}

.blog-tabbing-list li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    border-radius: 6px;
    padding: 15px 25px;
    background-color: var(--blue);
}

.blog-tabbing-list .current a {
    box-shadow: 0px 4px 15px #0c0c0c88;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 3px 3px 10px #36363613, -3px -3px 10px #36363613;
    padding: 30px;
}

.blog-card-content h2 {
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0;
}

.blog-card-content p {
    font-size: 18px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--blue);
}

.blog-card-content .blog-btn {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    border-radius: 4px;
    padding: 10px 20px;
    background-color: var(--blue);
    display: inline-block;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
}

/*////////////  Question PAGE  /////////////*/
.question-accordion {
    padding: 10px 0px;
}

.question-accordion .accordion {
    font-family: "Aptos", sans-serif;
    background-color: #f8f8f8;
    color: #0e0e0e;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: bolder;
    font-size: 20px;
    transition: 0.4s;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-accordion .active,
.question-accordion .accordion:hover {
    background-color: #f2f2f2;
    color: #262626;
    font-weight: bold;
}

.question-accordion .accordion:after {
    content: "\002B";
    color: var(--blue);
    float: right;
    font-weight: 500;
    font-size: 30px;
}

.question-accordion .active:after {
    content: "\2212";
}

.question-accordion .panel {
    padding: 0 20px;
    background-color: transparent;
    color: #0e0e0e;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
}

.question-accordion .panel p {
    font-size: 18px;
    padding: 15px 0;
}

/*////////////  Privacy Policy and Terms & Conditions PAGE  /////////////*/
.privacy-condition-content p {
    font-size: 22px;
}

.privacy-condition-content .para {
    color: #7b7b7b;
}

/*////////////  Pricing PAGE  /////////////*/
.pricing-card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 30px 30px;
    text-align: center;
}

.pricing-card-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.pricing-card-content h1 {
    font-family: "Aptos", sans-serif;
    font-size: 35px;
    font-weight: 800;
    color: var(--blue);
}

.pricing-card-content h2 {
    font-size: 60px;
    font-weight: 700;
    margin: 15px 0;
}

.pricing-card-content .offer {
    font-size: 16px;
    margin: 0 60px;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--blue);
}

.pricing-card-content p {
    color: #000;
    margin: 20px 0;
}

.pricing-card-content .pricing-btn {
    padding-bottom: 20px;
}

.pricing-card-content .pricing-btn a {
    border: 3px solid var(--blue);
    padding: 20px 0px;
    background-color: white;
    height: auto;
    width: 100%;
    color: var(--blue);
}

.pricing-card-content .pricing-btn a:hover {
    border: 3px solid var(--blue);
    background-color: var(--blue);
    color: var(--white);
}

.pricing-card-list li {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    letter-spacing: 1px;
}

.pricing-card-list li img {
    padding-right: 8px;
}

.pricing-sec .para {
    text-align: center;
    color: #8f8f8f;
    font-size: 18px;
}

/*////////////  Contact Us PAGE  /////////////*/
.contact-box {
    border: 1px solid grey;
    display: flex;
    border-radius: 10px;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.contact-img {
    text-align: center;
}

.contact-content .para {
    font-size: 18px;
    color: #8f8f8f;
}

.contact-sec .contact-form {
    padding: 75px 50px;
}

.contact-form h1 {
    color: var(--white);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-form .form-row {
    margin-right: 0px;
    margin-left: -0px;
    flex-wrap: nowrap;
}

.contact-form .form-row .input-data {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    backdrop-filter: brightness(80%);
    font-size: 18px;
    width: 50%;
    margin: 0;
}

.contact-form .form-row div:first-child {
    margin-right: 20px;
}

.contact-form form .input-data,
.contact-form .input-textarea {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    backdrop-filter: brightness(80%);
    font-size: 18px;
    margin: 20px 0;
    width: 100%;
}

.contact-form form input:focus,
.contact-form textarea:focus {
    border: 1px solid rgb(255, 255, 255);
}

.contact-form .submit-btn {
    text-align: center;
    padding-top: 20px;
}

.contact-form .submit-btn .btn-b {
    padding: 25px 130px;
    border-radius: 8px;
    border: 0px;
}

.contact-form form input,
.contact-form textarea {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    padding: 20px;
    width: 100%;
}

::placeholder {
    color: #ffffff9c;
}

.contact-box>div:nth-child(1) {
    width: 40%;
    background: white;
    border-radius: 10px 0 0 10px;
}

.contact-box>div:nth-child(2) {
    width: 60%;
    border-radius: 0 10px 10px 0px;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 25px;
}

.contact-checkbox label {
    font-size: 18px;
}

.contact-checkbox input {
    height: 20px;
    width: 20px;
}

/*////////////  Website Builder PAGE  /////////////*/
/* business section */
.business-content h1 {
    color: var(--black);
}

.business-content p {
    color: var(--black-2);
}

.business-imgs {
    margin-right: -150px;
}

/* Basic-section */
.basic-sec {
    background-size: cover;
    background-position: center;
}

.basic-content {
    text-align: center;
}

.basic-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.basic-cards>div:nth-child(even) {
    padding: 0 30px;
}

.basic-card .card {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.basic-card-content {
    padding: 50px 55px;
}

.basic-card-content h3 {
    font-size: 23px;
    font-family: "Aptos", sans-serif;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--white);
}

.basic-card-content P {
    color: var(--white);
}

/* Steps Section */
.steps-hd {
    text-align: center;
}

.steps-hd h1 {
    color: var(--black);
}

.steps-hd p {
    color: var(--black);
}

.steps-content h2 {
    color: #000;
    padding-bottom: 20px;
    line-height: 1.4;
}

.steps-content p {
    color: var(--blue);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
}

.steps-list ul {
    line-height: 2;
    font-size: 18px;
}

.steps-list ul li {
    padding: 30px 0;
    display: flex;
    justify-content: flex-start;
}

/* solution-Section */
.solution-sec {
    background-size: cover;
    background-position: center;
}

.solution-content {
    text-align: center;
}

.solution-btn .btn-b {
    padding: 25px 100px;
}

/*////////////  Website Hosting PAGE  /////////////*/
/* hosting-section */
.hosting-content {
    text-align: center;
}

.hosting-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.hosting-cards>div:nth-child(even) {
    padding: 0 30px;
}

.hosting-card-content {
    background-color: #f6f6f6;
    border-radius: 10px;
    padding: 25px 40px;
}

.hosting-card-content h2 {
    font-size: 45px;
    font-weight: 800;
    font-family: "Aptos", sans-serif;
    color: var(--blue);
}

.hosting-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    padding-top: 40px;
    padding-bottom: 20px;
}

.hosting-card-content p {
    padding: 0 16px;
}

.hosting-hd h1 {
    color: #000;
}

.hosting-hd p {
    color: #000;
}

/* hosting-steps Section */
.hosting-steps-sec {
    background-position: center;
    background-size: cover;
}

.hosting-steps-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hosting-steps-content>div:nth-child(1) {
    width: 60%;
}

.hosting-steps-content>div:nth-child(2) {
    width: 40%;
}

.hosting-steps-content-hd h2 {
    font-size: 28px;
}

.hosting-steps-content-no {
    text-align: center;
}

.hosting-steps-content-no h1 {
    font-size: 110px;
    color: rgba(255, 255, 255, 0.2);
    filter: blur(8px);
    filter: brightness(80%);
}

/* plan-section */
.plan-content h1 {
    color: #000;
}

.plan-content p {
    color: #000;
}

.plan-btn .btn-a {
    padding: 20px 35px;
}

.plan-list ul {
    list-style: disc;
    font-size: 20px;
}

.plan-list ul>li:nth-child(even) {
    margin-right: -50px;
    margin-left: 140px;
}

.plan-list ul>li:nth-child(odd) {
    margin-right: 54px;
    margin-left: -5px;
}

.plan-list-content h2 {
    color: var(--blue);
    font-size: 28px;
}

.plan-list-content p {
    color: #000;
}

/* Design Section */
.design-sec {
    background-size: cover;
    background-position: center;
}

.design-content {
    text-align: center;
}

.design-content p {
    padding: 0 145px;
}

.design-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 3px 3px 10px #36363613, -3px -3px 10px #36363613;
    padding: 20px;
    height: 100%;
    width: 100%;
}

.design-card-content h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.design-card-content p {
    font-size: 18px;
}

.design-cards {
    display: flex;
    flex-wrap: wrap;
}

.design-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-btn .btn-b {
    padding: 20px 35px;
}

/*//////////// Payment PAGE  /////////////*/
/* payment-section */
.payment-form input,
.payment-form .form-select {
    border: 1px solid #707070a2;
    background: rgb(255, 255, 255);
    font-size: 18px;
    padding: 25px 20px;
    border-radius: 6px;
    color: var(--blue);
    width: 100%;
    box-shadow: 0 3px 6px #00000025;
}

.payment-form label {
    color: #0e0e0e;
    margin: 0;
    font-weight: 500;
}

.payment-form input::placeholder {
    color: #7b7b7b;
}

.payment-form .form-row {
    justify-content: space-between;
    margin-right: 0px;
    margin-left: 0px;
}

.payment-form input:focus,
.payment-form .form-select:focus {
    border: 1px solid var(--blue);
}

.payment-form .form-row .input-data {
    width: 48%;
}

.payment-btn {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.payment-btn .btn-a {
    padding: 25px 180px;
    font-size: 22px;
}

.payment-img {
    text-align: center;
    padding: 20px 0;
}

.summary-table table {
    width: 100%;
}

.summary-table table {
    border: 1px solid #e2e2e2b0;
    border-collapse: collapse;
}

.summary-table th {
    font-size: 20px;
    font-weight: 700;
    font-family: "Aptos", sans-serif;
    padding: 25px 0;
    text-align: center;
    background-color: var(--blue);
    color: white;
}

.summary-table td {
    border-top: 2px solid #d5d8dc;
    padding: 20px 30px;
}

.summary-table>table>tbody>tr.summary-table-row-1>td:nth-child(1) {
    border: 0px;
}

.summary-table>table>tbody>tr.summary-table-row-1>td:nth-child(2) {
    border: 0px;
}

.summary-table>table>tbody>tr>td:nth-child(2) {
    text-align: right;
    vertical-align: middle;
}

.summary-table>table>tbody>tr>td:nth-child(1) {
    text-align: left;
    vertical-align: middle;
}

.summary-img {
    text-align: center;
}

.summary-table h3 {
    color: #000;
    font-size: 18;
    font-weight: 400;
    line-height: 2;
}

.summary-table span {
    color: #7b7b7b;
    font-size: 18;
}

.summary-table-row-2 h3,
.summary-table-row-2 p {
    color: var(--blue);
}

.summary-table-row-4 h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Aptos", sans-serif;
    letter-spacing: 1px;
    line-height: 2;
}

.summary-table-row-4 h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--blue);
}

.form-group {
    display: block;
    margin-bottom: 15px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

/*//////////// User Detail PAGE  /////////////*/
/* User Detail-section */
.user-btn {
    display: flex;
    padding-top: 40px;
}

.user-btn .btn-a {
    padding: 25px 180px;
    font-size: 22px;
}

input[type="file"] {
    opacity: 0;
    padding: 0;
    width: 0;
    height: 0;
}

.upload-input {
    position: relative;
}

.upload-input::after {
    content: '';
    width: 38px;
    height: 36px;
    display: block;
    background: url(../images/input.png) no-repeat;
    position: absolute;
    left: 0;
    top: -11px;
}

.upload-input {
    padding-left: 50px;
    margin-top: 20px;
}

label.upload-input {
    margin-top: 20px;
}


/* FOOTER */
.social-icons {
    display: flex;
    /* justify-content: center; */
}

.social-icons a {
    color: #000;
}

.f-hd {
    font-size: 25px;
    font-weight: 700;
}

.f-hd {
    font-size: 25px;
    font-weight: 700;
}

.f-menu li {
    padding: 5px 0;
}

.f-menu a {
    color: var(--black);
    font-size: 20px;
    line-height: 1.6;
}

.f-icons ul>li:nth-child(even) {
    padding: 0 10px;
}

.bottom-footer p {
    text-align: center;
    font-size: 20px;
}

.bottom-footer span {
    font-weight: 500;
}

/* HEADINGS AND PARAGRAPHS */
.primary-hd {
    font-size: 50px;
    font-weight: 800;
    font-family: "Aptos", sans-serif;
    color: var(--white);
    line-height: 1.2;
}

.sub-hd {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.third-hd {
    font-size: 30px;
    color: var(--white);
}

.primary-para {
    font-size: 18px;
    color: var(--white);

    .form-content input {
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        backdrop-filter: brightness(80%);
        font-size: 18px;
        padding: 25px 20px;
        color: var(--white);
        width: 100%;
    }

    ::placeholder {
        color: #ffffff9c;
    }

    line-height: 1.5;
}

/* background-colors */
.bg-light-green {
    background-color: var(--light-green) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-light-yellow {
    background-color: var(--light-yellow) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.bg-blue2 {
    background-color: var(--blue2) !important;
}

.bg-pink {
    background-color: var(--pink) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

/* colors */
.blue {
    color: var(--blue) !important;
}

.green {
    color: var(--green) !important;
}

.yellow {
    color: var(--yellow) !important;
}

.light-green {
    color: var(--light-green) !important;
}

.light-blue {
    color: var(--light-blue) !important;
}

.light-yellow {
    color: var(--light-yellow) !important;
}

/* PADDING */
.p-110 {
    padding: 70px;
}

.p-30-174 {
    padding: 30px 174px;
}

/* p top and bottom */
.py-30 {
    padding: 30px 0;
}

.py-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

/* p left and right */
.px-30 {
    padding: 0 31%;
}

.px-20 {
    padding: 0 20px;
}

.px-15 {
    padding: 0 15px;
}

/* p-top */
.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

/* p-bottom */
.pb-15 {
    padding-bottom: 15px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* p-left */
.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-70 {
    padding-left: 70px;
}

/* p-right */
.pr-100 {
    padding-right: 100px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-30 {
    padding-right: 30px;
}

/* MARGIN */
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-150 {
    margin-bottom: 150px;
}

/* LINE HIEGHTS */
.lh-15 {
    line-height: 1.5;
}

.lh-12 {
    line-height: 1.2;
}

/*botton*/
.btn-a {
    padding: 15px 30px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 16px;
    display: inline-block;
    transition: all 0.5s;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 3px;
}

.btn-a:hover {
    background-color: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
}

.btn-b {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--blue);
    font-size: 16px;
    display: inline-block;
    transition: all 0.5s;
    font-weight: 700;
    border-radius: 3px;
}

.btn-b:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* PROFILE PAGE */
input .profile-img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    background: #dfdfdf;
    border: 3px solid;
}

.profile-detail {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.profile-detail h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-image {
    margin-bottom: 2rem;
    text-align: center;

}

.separator {
    height: 2px;
    background-color: #1E4596;
}

.profile-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-top: 40px;
    margin-bottom: 30px;
}

.profile-image label {
    display: block;
    width: 200px;
    background: #1E4596;
    color: #fff;
    padding: 12px;
    margin: 0px auto;
    border-radius: 5px;
    cursor: pointer;
}

.profile-log {
    width: 20%;
    margin-right: 2rem;
}

.innerBanner-blog {
    background-size: cover;
    background-position: center;
    position: relative;
    height: auto;
    width: 100%;
    padding: 100px 0 0;
    border-radius: 0px 0px 50px 50px;
}

#comment {
    border-radius: 10px;
}

textarea::-webkit-input-placeholder {
    padding: 1rem;
    font-size: 18px;
    color: #7B7B7B;
}

/* DropDown */

/* .dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
} */







/* DropDown End */

/* PROFILE PAGE ENDS */
@media (max-width: 1799px) {
    .business-imgs {
        margin-right: -100px;
    }
}

@media (max-width: 1640px) {
    .business-imgs {
        margin-right: -50px;
    }
}

@media (max-width: 1540px) {
    .business-imgs {
        margin-right: 0px;
    }
}

@media (max-width: 1412px) {
    .pricing-card-content .offer {
        margin: 0 40px;
    }
}

@media (max-width: 1386px) {
    .host-content h1 {
        padding-right: 30px;
    }

    .p-110 {
        padding: 30px 50px;
    }

    .pr-190 {
        padding-right: 160px;
    }
}

@media (max-width: 1380px) {
    .seperator {
        transform: rotate(38deg);
    }

    .different-seperator {
        transform: rotate(-38deg);
    }

    .host-content h1 {
        padding-right: 170px;
    }

    .host-content ul li {
        font-size: 16px;
    }

    .pl-70 {
        padding: 0 50px;
    }

    .primary-hd {
        font-size: 40px;
    }
}

@media (max-width: 1340px) {
    .seperator {
        transform: rotate(39deg);
    }

    .different-seperator {
        transform: rotate(-39deg);
    }
}

@media (max-width: 1300px) {
    .seperator {
        transform: rotate(40deg);
    }

    .different-seperator {
        transform: rotate(-40deg);
    }

    .steps-list ul li {
        padding: 20px 0;
    }

    .steps-content h2 {
        padding-bottom: 10px;
        line-height: 1.2;
    }

    .pricing-card-content .offer {
        margin: 0 0px;
    }
}

@media (max-width: 1280px) {
    .seperator {
        bottom: 52px;
    }

    .plan-list ul>li:nth-child(odd) {
        margin-right: 0px;
        margin-left: 0px;
    }

    .plan-list ul>li:nth-child(even) {
        margin-right: -70px;
        margin-left: 80px;
    }
}

@media (max-width: 1240px) {
    .seperator {
        transform: rotate(41deg);
        bottom: 56px;
    }

    .different-seperator {
        transform: rotate(-41deg);
    }

    .host-content h1 {
        padding-right: 150px;
    }

    .pr-190 {
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .seperator {
        transform: rotate(42deg);
    }

    .different-seperator {
        transform: rotate(-42deg);
    }

    .launch-img-1 {
        right: 96px;
        bottom: 84px;
    }

    .launch-img-2 {
        top: 84px;
        left: 38px;
    }
}

@media (max-width: 1180px) {
    .seperator {
        transform: rotate(43deg);
    }

    .different-seperator {
        transform: rotate(-43deg);
    }

    .host-content h1 {
        padding-right: 100px;
    }

    .banner-video {
        margin-bottom: -200px;
    }

    .banner-video video {
        width: 80%;
    }

    .steps-list ul li {
        padding: 10px 0;
    }
}

@media (max-width: 1140px) {
    .seperator {
        transform: rotate(44deg);
    }

    .different-seperator {
        transform: rotate(-44deg);
    }

    .banner-content h1 {
        font-size: 50px !important;
    }

    .p-110 {
        padding: 30px 40px;
    }

    .summary-table-row-4 h1 {
        font-size: 40px;
    }
}

@media (max-width: 1080px) {
    .pr-100 {
        padding-right: 0px;
    }

    .pricing-card-content .offer {
        font-size: 14px;
    }

    .login-btns .btn-a {
        padding: 25px 100px;
    }

    .seperator {
        transform: rotate(45deg);
        left: -47px;
        bottom: 58px;
    }

    .different-seperator {
        transform: rotate(-45deg);
        right: -48px;
        left: unset;
    }

    .banner-content h1 {
        font-size: 54px;
    }

    .btn-a {
        font-size: 14px;
    }

    .btn-b {
        font-size: 14px;
    }

    .p-110 {
        padding: 30px;
    }

    .pr-190 {
        padding-right: 40px;
    }
}

@media (max-width: 1040px) {
    .seperator {
        transform: rotate(46deg);
    }

    .different-seperator {
        transform: rotate(-46deg);
    }
}

@media (max-width: 1253px) {
    .banner-content h1 {
        font-size: 56px;
    }

    .b-card-content {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .px-30 {
        padding: 0px 23%;
    }
}

@media (max-width: 1023px) {
    .pricing-card-list li {
        padding: 15px 0;
    }

    .pricing-card-content h1 {
        font-size: 30px;
    }

    .pricing-card-content h2 {
        font-size: 55px;
    }

    .pricing-card-content h4 {
        font-size: 20px;
    }

    .innerBanner {
        padding: 120px 0 20px 0;
    }

    .values-btns {
        padding-bottom: 20px;
    }

    .summary-table {
        margin-top: 20px;
    }

    .business-imgs {
        text-align: center;
    }

    .business-imgs {
        margin-top: 30px;
    }

    .p-30-174 {
        padding: 20px;
    }

    .hosting-cards>div:nth-child(even) {
        padding: 30px 0;
    }

    .contact-box>div:nth-child(2) {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .contact-box>div:nth-child(1) {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .contact-box {
        flex-direction: column;
    }

    .form-card {
        margin-top: 40px;
    }

    .hosting-cards {
        display: flex;
        flex-direction: column;
    }

    .hosting-card-content {
        padding: 20px 50px;
    }

    .plan-list ul {
        padding-left: 20px;
    }

    .design-content p {
        padding: 0 45px;
    }

    .plan-list ul>li:nth-child(even) {
        margin-right: 0px;
        margin-left: 0px;
    }

    .plan-list ul>li:nth-child(odd) {
        margin-right: 0px;
        margin-left: 0px;
    }

    .plan-list {
        padding-top: 20px;
    }

    .hosting-steps-img {
        padding-top: 20px;
        text-align: center;
    }

    .basic-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .basic-cards>div {
        padding: 15px 30px;
    }

    .pt-60 {
        padding: 20px;
    }

    .column-reverse {
        flex-direction: column-reverse;
    }

    .host-content h1 {
        padding-right: 0px;
    }

    .menu-Bar {
        display: block;
    }

    .menuWrap {
        position: fixed;
        transform: rotateY(-90deg);
        transform-origin: left;
        left: 0;
        top: 0;
        opacity: 1;
        background: var(--blue);
        height: 100vh;
        transition: all 0.5s ease;
        z-index: 3;
        width: 100%;
        border-radius: 0%;
        overflow: auto;
        padding-top: 110px;
        padding-left: 40px;
        padding-right: 80px;
    }

    .menuWrap.open {
        display: flex;
        transform: rotateY(0);
        border-radius: 0;
        opacity: 1;
        flex-direction: column;
        margin: 0;
    }

    .menuWrap .menu {
        display: block;
    }

    .menuWrap .menu li {
        display: block;
    }

    .container {
        position: relative;
    }

    header .main-header ul.menu>li {
        display: block;
        padding: 0px;
    }

    header .main-header ul.menu>li a:before {
        display: none;
    }

    .menuWrap .menu li a {
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0px;
        margin-right: 0px;
        color: var(--white);
        font-size: 30px;
        text-transform: capitalize;
        text-align: left;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu .dropdown-content li a {
        color: var(--black);
    }

    .tabing-img {
        text-align: center;
        padding-top: 30px;
    }

    .b-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .b-cards>div {
        padding: 15px 30px;
    }

    .p-cards>div {
        padding: 20px 10px;
        width: 100%;
    }

    .community-imgs {
        text-align: center;
        padding-top: 30px;
    }

    .p-cards {
        flex-wrap: wrap;
    }

    .p-cards>div:nth-child(odd) {
        transform: scale(1);
    }

    .grow-imgs {
        text-align: center;
        padding-top: 30px;
    }

    .quick-links {
        padding-top: 40px;
    }

    .seperator {
        transform: rotate(20deg);
        bottom: 35px;
    }

    .different-seperator {
        transform: rotate(-20deg);
    }

    .unique-imgs {
        text-align: center;
        padding-top: 30px;
    }

    .deliver-imgs {
        text-align: center;
        padding-top: 30px;
    }

    .s-img {
        text-align: center;
        padding: 15px 0;
    }

    .values-content {
        padding-top: 30px;
    }

    .values-img {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .solution-btn .btn-b {
        padding: 20px 80px;
    }

    .pt-80 {
        padding-top: 0px;
    }

    .p-110 {
        padding: 50px;
        margin: 30px;
    }

    .otp-input-fields .otp__digit {
        height: 66px;
        width: 66px;
    }

    .social-icons {
        justify-content: center;
    }

    .main-footer {
        text-align: center;
    }

    .main-footer p {
        padding-right: 0;
    }
}

@media (max-width: 820px) {
    .blog-tabbing-list li {
        padding: 20px 10px;
    }

    .blog-tabbing-list li a {
        font-size: 15px;
        padding: 12px 16px;
    }

    .launch-img-1 {
        right: 119px;
        bottom: 100px;
    }

    .launch-img-2 {
        top: 118px;
        left: 64px;
    }

    .seperator {
        transform: rotate(24deg);
        bottom: 38px;
    }

    .different-seperator {
        transform: rotate(-24deg);
    }

    .payment-btn .btn-a {
        padding: 20px 130px;
        font-size: 20px;
    }

    .user-btn .btn-a {
        padding: 20px 130px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hosting-steps-content-no h1 {
        font-size: 60px;
    }

    .form-hd h1 {
        font-size: 30px;
    }

    .pricing-card {
        padding: 20px 10px;
    }

    .pricing-card-content h1 {
        font-size: 20px;
    }

    .pricing-card-content h4 {
        font-size: 18px;
    }

    .pricing-card-content h2 {
        font-size: 40px;
    }

    .pricing-card-content .offer {
        font-size: 15px;
        margin: 0 0px;
        padding: 10px 0px;
    }

    .pricing-card-content .pricing-btn a {
        padding: 15px 0px;
    }

    .pricing-card-list li {
        font-size: 14px;
    }

    .hosting-steps-content {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hosting-steps-content>div:nth-child(1) {
        width: 100%;
        text-align: center;
    }

    .hosting-steps-content>div:nth-child(2) {
        width: 100%;
        text-align: center;
    }

    .hosting-steps-img {
        padding-top: 40px;
        text-align: center;
    }

    .hosting-card-content {
        padding: 20px 0px;
    }

    .design-content p {
        padding: 0 0px;
    }

    .launch-img-1 {
        right: 67px;
        bottom: 37px;
    }

    .launch-img-2 {
        top: 65px;
        left: 30px;
    }

    .px-30 {
        padding: 0;
    }

    .seperator {
        transform: rotate(26deg);
        bottom: 38px;
    }

    .different-seperator {
        transform: rotate(-26deg);
    }

    .pb-40 {
        padding-bottom: 20px;
    }

    .form-card {
        margin-top: 30px;
    }

    .py-120 {
        padding: 80px 0;
    }

    .pt-20 {
        padding-top: 15px;
    }

    .login-btns {
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .create-btn {

       padding-top: 20px;
        padding-bottom: 15px;
    }

    .form-content input {
        padding: 20px 15px;
        font-size: 16px;
    }

    .form-content label {
        font-size: 16px;
    }

    .back-to-login a {
        font-size: 16px;
    }

    .createaccount a {
        font-size: 16px;
    }

    .createaccount span {
        font-size: 16px;
    }

    .login-btns .btn-a {
        padding: 20px 100px;
    }

    .create-btn .btn-a {
        padding: 20px 70px;
    }

    .form-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .steps-list ul li {
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .py-120 {
        padding: 40px 0;
    }

    .header-btns .login {
        padding: 0px 0px;
        margin-right: 20px;
    }

    .pricing-card-list li {
        padding: 10px 0;
    }

    .summary-table-row-4 h1 {
        font-size: 40px;
    }

    .px-30 {
        padding: 0;
    }

    .seperator {
        transform: rotate(26deg);
        bottom: 38px;
    }

    .different-seperator {
        transform: rotate(-26deg);
    }

    .pt-80 {
        padding-top: 0px;
    }

    .hide {
        display: none;
    }

    .banner-content p {
        padding: 15px 0;
        font-size: 16px;
    }

    .banner-content h1 {
        font-size: 30px !important;
    }

    .banner-video video {
        width: 100%;
    }

    .banner-video {
        margin-bottom: -80px;
    }

    .mainBanner {
        padding: 120px 0 0;
    }

    .innerBanner {
        padding: 100px 0 30px 0;
    }

    .btn-b {
        padding: 10px 30px;
    }

    .host-sec {
        padding-top: 100px !important;
    }

    header {
        padding: 15px 0px;
    }

    .primary-hd {
        font-size: 26px;
    }

    .host-content p {
        padding: 10px 0;
        padding-right: 0;
    }

    .primary-para {
        font-size: 16px;
    }

    .host-content ul {
        display: block;
    }

    .pl-70 {
        padding: 0 0 0 20px;
    }

    .host-content ul li {
        padding: 10px 0;
    }

    .pt-45 {
        padding-top: 15px;
    }

    .btn-a {
        padding: 10px 30px;
    }

    .pt-70 {
        padding-top: 30px;
    }

    .py-50 {
        padding: 25px 0;
    }

    .b-cards>div {
        padding: 15px 0px;
    }

    .b-cards>div:nth-child(even) {
        padding: 0;
    }

    .platform-hd p {
        padding: 10px 0;
    }

    .platform-content .tabbing-list li {
        padding: 6px 0;
    }

    .platform-content .tabbing-list li a {
        font-size: 18px;
    }

    .tabing-img {
        padding-bottom: 0;
        margin-top: 20px;
    }

    .platform-btns {
        padding-top: 15px;
    }

    .package-hd h1 {
        padding-bottom: 15px;
    }

    .p-cards {
        padding: 10px 0px;
    }

    .pt-25 {
        padding-top: 10px;
    }

    .pt-35 {
        padding-top: 15px;
    }

    .pr-100 {
        padding-right: 0;
    }

    .pt-50 {
        padding-top: 20px;
    }

    .quick-links {
        padding-top: 20px;
    }

    .pt-30 {
        padding-top: 10px;
    }

    .f-menu a {
        font-size: 16px;
    }

    .bottom-footer p {
        font-size: 15px;
    }

    .f-img img {
        width: 40%;
    }

    .header-btns .login a {
        font-size: 20px;
    }

    .menuWrap .menu li a {
        margin-bottom: 18px;
        font-size: 20px;
        padding-bottom: 20px;
    }

    .seperator {
        transform: rotate(18deg);
        bottom: 20px;
    }

    .different-seperator {
        transform: rotate(-18deg);
    }

    .p-card-hd h2 {
        font-size: 40px;
    }

    .third-hd {
        font-size: 25px;
    }

    .p-card-list ul li {
        padding: 15px 0;
    }

    .p-card-list {
        font-size: 16px;
    }

    .p-card-content .amount {
        font-size: 46px;
    }

    .p-card-btn a {
        border-radius: 5px;
        padding: 10px 30px;
    }

    .p-card-hd {
        padding: 20px 0 100px;
    }
}

@media (max-height: 940px) {
    .host-sec {
        padding-top: 400px;
    }
}

@media (max-width: 600px) {
    .seperator {
        transform: rotate(33deg);
        bottom: 34px;
    }

    .different-seperator {
        transform: rotate(-33deg);
    }

    .p-110 {
        padding: 25px 20px;
    }

    .otp-input-fields .otp__digit {
        height: 55px;
        width: 55px;
    }

    .login-btns .btn-a {
        padding: 20px 70px;
    }

    .form-card {
        margin: 0 0px;
        margin-top: 30px;
    }

    .pr-190 {
        padding-right: 0px;
    }

    .summary-table-row-4 h1 {
        font-size: 25px;
    }

    .summary-table-row-4 h2 {
        font-size: 18px;
    }

    .summary-table h3 {
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .payment-form .form-content input {
        padding: 15px 15px;
    }

    .payment-form .form-content .form-select {
        padding: 15px 15px;
    }

    .form-content label {
        font-size: 16px;
    }

    .payment-btn .btn-a {
        padding: 15px 40px;
        font-size: 16px;
    }

    .user-btn {
        padding-top: 20px;
    }

    .user-btn .btn-a {
        padding: 15px 40px;
        font-size: 16px;
    }

    .payment-form input,
    .payment-form .form-select {
        font-size: 16px;
    }

    .solution-btn .btn-b {
        padding: 15px 50px;
    }

    .basic-cards>div {
        padding: 15px 0;
    }

    .basic-cards>div:nth-child(even) {
        padding: 0px;
    }

    .steps-list ul li {
        padding: 10px 0;
    }

    .basic-card-content {
        padding: 30px 20px;
    }

    .contact-form .submit-btn .btn-b {
        padding: 20px 50px;
        border-radius: 6px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }

    .contact-form .form-row .input-data {
        width: 100%;
    }

    .contact-sec .contact-form {
        padding: 30px 20px;
    }

    /* .social-icons {
    justify-content: center;
  }
  .main-footer {
    text-align: center;
  }
  .main-footer p {
    padding-right: 0;
  } */
}

@media (max-height: 830px) {
    .host-sec {
        padding-top: 320px;
    }
}


/* CUSTOM CSS */
ul.blog-tabbing-list li:nth-child(2) a {
    background-color: var(--light-green) !important;
}

ul.blog-tabbing-list li:nth-child(3) a {
    background-color: var(--light-yellow) !important;
}

ul.blog-tabbing-list li:nth-child(4) a {
    background-color: var(--light-blue) !important;
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(2) .blog-card-content h3 {
    color: var(--light-green);
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(2) .blog-card-content .blog-btn {
    background-color: var(--light-green);
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(3) .blog-card-content h3 {
    color: var(--light-yellow);
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(3) .blog-card-content .blog-btn {
    background-color: var(--light-yellow);
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(4) .blog-card-content h3 {
    color: var(--light-blue);
}

.custom-blog-box-wrapper>.custom-blog-box:nth-child(4) .blog-card-content .blog-btn {
    background-color: var(--light-blue);
}

ul.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

ul.form-button li a {
    background-color: #e3e3e3;
    width: 200px;
    border-radius: 0px;
    padding: 10px 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Aptos", sans-serif;
}

ul.form-button li a.active {
    background-color: var(--blue);
    color: white;
}


.course-box h2 {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

.course-box p {
    font-size: 16px;
    margin-bottom: 8px;
}

.course-box h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.course-box-lower {
    border: 1px solid var(--blue);
    padding: 3px 10px 14px;
    border-radius: 0;
}
.course-details .btn-a {
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}
.course-box:hover img {
    transform: scale(1.05);
}

.course-box {
    overflow: hidden;
}

.course-box img {
    transition: all 0.4s ease;
    height: 170px;
    object-fit: cover;
    width: 100%;
}

.course-box:hover .course-box-lower {
    background-color: var(--blue);
    color: white;
}

.course-box:hover .course-box-lower h2 {
    color: white;
}

.course-box:hover .course-box-lower a {
    background-color: white;
    color: var(--blue);
}

/* COURSES LAYOUT */
.border-1px {
    border: 1px solid #eeeeee !important;
}
.bg-white {
    background-color: #fff !important;
}
.course-thumb {
    position: relative;
}
.price-tag {
    background: var(--blue);
}
.price-tag {
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    position: absolute;
    right: -7px;
    text-transform: capitalize;
    top: 16px;
    -webkit-transition: all 150ms ease-in-out 0s;
    -o-transition: all 150ms ease-in-out 0s;
    transition: all 150ms ease-in-out 0s;
}
.price-tag::before {
    border-left: 7px solid var(--blue);
    border-top: 7px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: -1px;
    top: 0;
    transform: translateY(-100%);
    width: 0;
}
.order-btn {
    left: 15px;
    position: absolute;
    top: 15px;
}
.btn-theme-colored2 {
    background-color: #FC9928;
}
.btn-theme-colored2 {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}

.review-stars i {
    color: #FC9928;
}
.text-theme-colored2 {
    color: var(--blue);
}

.course-meta li h6 {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0 0;
}
.course-meta li span {
    font-size: 13px;
    margin: 0;
}
.course-details{
    padding: 20px !important;
    padding-top: 15px;
}
.course-top-part h4 {
    font-size: 20px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 10px;
}
p.course-description {
    margin: 10px 0px;
}
.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
.font-48 {
    font-size: 48px !important;
}
.single-service > ul {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.single-service > ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}
.single-service > ul li span {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.single-service > ul li h5 {
    font-weight: 600;
}
.single-service h3 {
    line-height: 1.42857143;
    color: var(--blue);
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
}
.courses-price h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: bold;
    color: var(--blue);
    margin-top: 0;
}

.sidebar .widget {
    padding: 15px;
    margin-bottom: 40px;
    background-color: #F9F9F6;
}

.courses-price h3 p {
    font-size: 15px;
    text-decoration: line-through;
    color: #6a6f73;
    font-weight: 400;
    position: relative;
    top: 3px;
}
.sidebar.sidebar-left {
    margin-left: 30px !important;
}
.widget a.btn-a {
    display: block;
    text-align: center;
}
.widget-inner {
    padding: 00px 20px;
}

.widget-inner .btn-a {
    margin-top: 15px;
    margin-bottom: 15px;
}

.widget-inner .btn-b {
    display: block;
    text-align: center;
    border: 1px solid var(--blue);
    width: 100%;
}
.widget-inner span {
    display: block;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 15px;
}
h4.widget-title {
    font-size: 25px;
    font-weight: 800;
    font-family: "Aptos", sans-serif;
    color: var(--black);
    margin-top: 10px;
}
.categories ul li {
    margin: 17px 0px;
    font-size: 15px;
    font-weight: 500;
}

.categories ul li i {
    width: 30px;
    color: var(--blue);
}
.learn-box {
    border: 1px solid #d1d7dc;
    padding: 30px;
    margin-top: 30px;
}

.learn-box h2 {
    line-height: 1.42857143;
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.learn-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.learn-box ul li {
    flex: 0 0 49%;
    font-size: 17px;
    margin: 4px 0px;
    border-bottom: 1px solid #d1d7dc;
    padding-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.learn-box ul li:before {
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f560";
    font-size: 18px;
    top: 3px;
}

.learn-box ul li:last-child {
    border: 0;
    margin-bottom: 0;
}

.learn-box ul li:nth-last-child(2) {
    border: 0;
    margin-bottom: 0;
}
.course-video h2 {
    line-height: 1.42857143;
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-video {
    margin-top: 30px;
}
.course-video h3 {
    margin: 0;
    font-size: 18px;
}

.course-video ul li:first-child p {
    font-size: 15px;
}

.course-video ul {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #d1d7dc;
    padding: 10px 0px;
}
.course-video ul li span {
    font-size: 18px;
    font-weight: 600;
}

.course-video .card-header {
    padding: 0;
}

.course-video .card-header button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 25px;
    color: black;
    font-weight: 600;
    font-size: 18px;
}
.course-description {
    margin: 40px 0 0;
}

.course-description p {
    font-size: 17px;
    line-height: 25px;
    margin: 10px 0px;
}

.course-description ul {
    list-style: disc;
    padding-left: 19px;
    font-size: 17px;
    line-height: 25px;
}
.course-video ul:last-child {
    border: 0;
    padding-bottom: 0;
}

a.show-preview {
    margin-right: 15px;
}