* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif", serif;
}

/* Golbal Color css  */
:root {
    --first: #dbad00;
    --second: #ffffff;
    --third: #000000;
}

/* Golbal Color css  */

/* Header css  */
nav {
    width: 100%;
    height: 100%;
    z-index: 99;
}

nav .navbar {
    height: 100%;
    width: 100%;
    align-items: center;
    margin: auto;
    padding-top: 0;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    padding: 0 10px;
    margin-top: 5%;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #b7b7b7;
    font-size: 16px;
    font-weight: 400;
    /* cursor: url(../Images/pointer.png) center center, auto; */
    cursor: url(../Images/pointer.png), pointer;

}


.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #b7b7b7;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 61px;
    left: -28px;
    line-height: 48px;
    background: #385568c7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 13px;
    display: none;
    z-index: 2;
    padding: 0;
    width: 200px;
}

.navbar .links li .sub-menu a:hover {
    cursor: url(../Images/pointer.png);
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    margin-top: 8%;
    text-align: center;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.logo img {
    width: 90%;
}

.search-box a.first-btn {
    border: 1px solid var(--second);
    background-color: var(--first);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--second);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #3E8DA8;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

/* Header css  */

/* Banner Css  */
.banner {
    background-image: url(../Images/Banner-Image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10% 0;
    border-radius: 12px;
    margin-top: -9%;
    padding-bottom: 6%;
    border-radius: 15px 15px 0 0;
    border: 7px solid #fff;
}

.banner-info h1 {
    font-size: 75px;
    color: #fff;
    font-weight: 600;
}

.banner-info h1 span.big-text {
    font-size: 90px;
    font-weight: 600;
    color: #fff;
}

.banner-info h1 span.text-color {
    color: #dcad05;
}

.banner-btn a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: auto;
    border-bottom: 1px solid #fff;
}

.banner-btn a:hover {
    color: var(--first);
    border-color: var(--first);
}

.banner-btn {
    margin-top: 5%;
}

.banner-info img {
    width: 20%;
    margin-bottom: 2%;
    padding-top: 8%;
}

form.baner-form {
    background: #cecfd0e8;
    padding: 32px;
    border-radius: 13px;
    width: 85%;
    display: block;
    margin: 5% 0 0 auto;
}

.form-logo img {
    width: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: -14%;
}

form.baner-form input {
    padding: 9px;
    background: #e7e8e9;
    margin: 10px 0;
    color: #454545;
    border: 2px solid #00ad39;
    border-radius: 11px;
}

form.baner-form input.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #00ad39;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(0 173 57 / 35%);
}

form.baner-form input::placeholder {
    color: #454545;
    font-size: 15px;
    font-weight: 500;
}

a.Forget-pass {
    color: #454545;
    font-size: 15px;
    font-weight: 500;
    margin-left: 0%;
    text-decoration: none;
}

input[type=submit] {
    border: 1px solid var(--second) !important;
    background-color: var(--first) !important;
    padding: 10px 16px !important;
    font-size: 17px !important;
    color: var(--second) !important;
}

a.register-btn {
    color: var(--first) !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid #dbad00;
    position: relative;
    top: -4px;
    left: 11%;
}

input[type=submit]:hover {
    background: transparent !important;
    border-color: var(--first) !important;
    color: var(--first) !important;
}

a.register-btn:hover {
    color: #00ad39 !important;
    border-color: #00ad39 !important;
    margin-left: 1%;
}

form.baner-form p {
    margin-bottom: 22px;
    margin-top: 5%;
}

input[type="checkbox"] {
    position: relative;
    width: 45px;
    height: 21px;
    -webkit-appearance: none;
    appearance: none;
    background: red;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

input[type="checkbox"]::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00ad39;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: #dbad00;
}

input[type="checkbox"]:checked {
    background: #00ed64;
}

p.custom-check {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0% !IMPORTANT;
}

form.baner-form .col-md-6 {
    padding: 0;
}

/* Banner Css  */

/* Viracore Details css  */
.viracore-heading h1 {
    font-size: 55px;
    margin-top: 12%;
    position: relative;
}

.viracore-heading h1:after {
    position: absolute;
    content: "";
    border-left: 3px solid #cccccc;
    width: 20px;
    height: 115px;
    top: -30px;
    right: 0;
}

.viracore-para p {
    font-size: 18px;
    max-width: 71%;
    font-weight: 500;
    display: block;
    margin: 0 auto;
    margin-top: 7%;
}

a.golbal-btn {
    border: 1px solid var(--third);
    background-color: var(--second);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--third);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
    transition: all 500ms linear;
}

/* Viracore Details css  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif", serif;
}

/* Golbal Color css  */
:root {
    --first: #dbad00;
    --second: #ffffff;
    --third: #000000;
}

/* Golbal Color css  */

/* Header css  */
nav {
    width: 100%;
    height: 100%;
    z-index: 99;
}

nav .navbar {
    height: 100%;
    width: 100%;
    align-items: center;
    margin: auto;
    padding-top: 0;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    padding: 0 10px;
    margin-top: 5%;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #b7b7b7;
    font-size: 16px;
    font-weight: 400;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #b7b7b7;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 61px;
    left: -28px;
    line-height: 48px;
    background: #385568c7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 13px;
    display: none;
    z-index: 2;
    padding: 0;
    width: 200px;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize !important;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    margin-top: 8%;
    text-align: center;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.logo img {
    width: 90%;
}

.search-box a.first-btn {
    border: 1px solid var(--second);
    background-color: var(--first);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--second);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #3E8DA8;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

/* Header css  */

/* Banner Css  */
.banner {
    background-image: url(../Images/Banner-Image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10% 0;
    border-radius: 12px;
    margin-top: -9%;
    padding-bottom: 6%;
    border-radius: 15px 15px 0 0;
    border: 7px solid #fff;
}

.banner-info h1 {
    font-size: 75px;
    color: #fff;
    font-weight: 600;
}

.banner-info h1 span.big-text {
    font-size: 90px;
    font-weight: 600;
    color: #fff;
}

.banner-info h1 span.text-color {
    color: #dcad05;
}

.banner-btn a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: auto;
    border-bottom: 1px solid #fff;
    transition: all 500ms linear;
}

.banner-btn {
    margin-top: 5%;
}

.banner-info img {
    width: 20%;
    margin-bottom: 2%;
    padding-top: 8%;
}

form.baner-form {
    background: #cecfd0e8;
    padding: 32px;
    border-radius: 13px;
    width: 85%;
    display: block;
    margin: 5% 0 0 auto;
}

.form-logo img {
    width: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: -14%;
}

form.baner-form input {
    padding: 9px;
    background: #e7e8e9;
    margin: 10px 0;
    color: #454545;
    border: 2px solid #00ad39;
    border-radius: 11px;
}

form.baner-form input::placeholder {
    color: #454545;
    font-size: 15px;
    font-weight: 500;
}

a.Forget-pass {
    color: #454545;
    font-size: 15px;
    font-weight: 500;
    margin-left: 0%;
    text-decoration: none;
}

input[type=submit] {
    border: 1px solid var(--second) !important;
    background-color: var(--first) !important;
    padding: 10px 16px !important;
    font-size: 17px !important;
    color: var(--second) !important;
    transition: all 500ms linear;
}

a.register-btn {
    color: var(--first) !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid #dbad00;
    position: relative;
    top: -4px;
    left: 11%;
    transition: all 500ms linear;
}

form.baner-form p {
    margin-bottom: 22px;
    margin-top: 5%;
}

input[type="checkbox"] {
    position: relative;
    width: 45px;
    height: 21px;
    -webkit-appearance: none;
    appearance: none;
    background: red;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

input[type="checkbox"]::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00ad39;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: #dbad00;
}

input[type="checkbox"]:checked {
    background: #00ed64;
}

p.custom-check {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0% !IMPORTANT;
}

form.baner-form .col-md-6 {
    padding: 0;
}

/* Banner Css  */

/* Viracore Details css  */
.viracore-heading h1 {
    font-size: 55px;
    margin-top: 12%;
    position: relative;
}

.viracore-heading h1:after {
    position: absolute;
    content: "";
    border-left: 3px solid #cccccc;
    width: 20px;
    height: 115px;
    top: -30px;
    right: 0;
}

.viracore-para p {
    font-size: 18px;
    max-width: 71%;
    font-weight: 500;
    display: block;
    margin: 0 auto;
    margin-top: 7%;
}

a.golbal-btn {
    border: 1px solid var(--third);
    background-color: var(--second);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--third);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
    transition: all 500ms linear;
    font-weight: 600;
}

.viracore-btn {
    margin-top: 40%;
}

a.golbal-btn:hover {
    border: 1px solid var(--second);
    background-color: var(--first);
    color: var(--second);
}

/* Viracore Details css  */

/* Services css  */
.left-row, .right-row {
    position: relative;
}

.left-row:after {
    content: "";
    position: absolute;
    bottom: -37%;
    right: -14px;
    background-image: url(../Images/Shape-Div-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 163px;
    z-index: -1;
}

.right-row:after {
    content: "";
    position: absolute;
    bottom: -9%;
    right: 42px;
    background-image: url(../Images/Shape-div-2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 150px;
    z-index: -1;
}

.service-list img {
    width: 100%;
}

.service-list-main {
    display: flex;
}

.service-list p.cards {
    background: #e6c54c !important;
    color: #fff !important;
    text-align: center !important;
    padding: 14px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border-radius: 16px !important;
    margin-top: -16% !important;
    padding-top: 18% !important;
    transition: all 500ms linear !important;
    max-width: 100%;
}

.service-list {
    margin-right: 3%;
    transition: all 500ms linear;
    width: 22%;
}

.service-list:hover p.cards {
    background: #00ad39 !IMPORTANT;
}

.servive-head p {
    font-size: 17px;
    max-width: 81%;
    font-weight: 500;
    display: block;
}

.servive-head h3 {
    font-size: 28px;
    font-weight: 600;
}

.servive-head h3 span {
    font-size: 15px;
}

.servive-head {
    margin-top: 10%;
}

.service-logo-img img {
    width: 95%;
}

.services-btn {
    margin-top: 3%;
}

.servive-head.mt-5 {
    margin-top: 30% !important;
}

.last-btns a.first-btn {
    border: 1px solid var(--third);
    background-color: var(--first);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--second);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
}

a.first-btn {
    transition: all 500ms linear;
}

a.first-btn:hover {
    border: 1px solid var(--first);
    background-color: transparent !important;
    color: var(--first);
}

.last-btns {
    margin-top: 10%;
    text-align: center;
}

/* Services css  */

/* Footer Css  */
.footer {
    background-image: url(../Images/Footer-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 5%;
    margin-top: 8%;
    border: 6px solid #fff;
    border-radius: 18px;
}

.foot-logo a img {
    width: 70%;
}

.foot-logo p {
    color: #a0a0a0;
    font-size: 14px;
    margin-top: 3%;
    max-width: 77%;
}

.ffoter-icon span i {
    background: #dbad00;
    font-size: 24px;
    width: 40px;
    height: 40px;
    padding: 7px 9px;
    border-radius: 50%;
    margin: 0 4px;
    margin-top: 3%;
    transition: all 500ms linear;
}

.ffoter-icon span a {
    color: #fff;
    transition: all 500ms linear;
}

.footer-info-list h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-top: 16%;
}

.footer-info-list p {
    font-size: 14px;
    margin-top: 11%;
    margin-bottom: -23px;
}

.footer-info-list p a {
    color: #fff;
    text-decoration: none;
    transition: all 200ms linear;
}

.footer-info-list p a:hover {
    color: #dbad00;
}

.footer-info-list img {
    width: 29%;
    margin-top: 12%;
    margin-bottom: -14%;
}

p.last-para {
    margin-top: 6%;
    border-top: 2px solid #626363;
    padding-top: 2%;
    color: #fff;
}

footer.footer .row {
    border-top: 2px solid #626363;
    padding-top: 24px;
}

.ffoter-icon span a:hover i {
    background: #04ae39;
}

/* Footer Css  */
/* About Pages Css Start  */
/* Inner banner  */
.inner-pages-banner {
    background-image: url(../Images/about-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 7% 0;
    border-radius: 15px 15px 0px 0px;
    border: 5px solid var(--second);
    margin-top: -9%;
}

.inner-banner-heading h1 {
    font-size: 70px;
    color: var(--second);
    margin-top: 3%;
    font-weight: 700;
}
.inner-sec-heading p {
    max-width: 94%;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.inner-sec-heading h1 {
    font-size: 70px;
    position: relative;
    margin-bottom: 6%;
}

.inner-sec-heading h1:after {
    content: "";
    border-bottom: 3px solid #cccccc;
    width: 14%;
    height: 30px;
    position: absolute;
    left: 9px;
    top: 78%;
}
.inner-sec-heading {
    margin-top: 20%;
}

/* Inner banner  */
/* About Pages Css Start  */

/* Contact page Css Start  */
.inner-pages-banner1{
    background-image: url(../Images/Contact-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 7% 0;
    border-radius: 15px 15px 0px 0px;
    border: 5px solid var(--second);
    margin-top: -9%;
}
.responsive-map iframe {
    width: 100%;
    margin-top: 6%;
}

.operate-box {
    background: var(--first);
}

.operate-box h4 {
    font-size: 35px;
    font-weight: 600;
    color: var(--second);
}

.operate-box p {
    color: var(--second);
    font-size: 16px;
    max-width: 70%;
    margin-bottom: 11%;
    margin-top: 7%;
}

.operate-box .first-btn {
    border: 2px solid var(--second);
    background-color: var(--first);
    padding: 11px 24px;
    font-size: 17px;
    color: var(--second);
    text-decoration: none;
    border-radius: 10px;
    text-transform: uppercase;
}

.operate-box {
    padding: 15% 22px;
    width: 90%;
    margin-top: -90%;
    margin-left: 20%;
    position: relative;
}
.operate-box::after {
    content: "";
    position: absolute;
    background-image: url(../Images/after.png);
    background-position: center;
    background-size: cover;
    width: 69px;
    height: 200px;
    top: 32%;
    right: 0;
    filter: contrast(0.2);
}

.operate-box .first-btn:hover {
    background: #fff !important;
    color: var(--first) !important;
    border-color: var(--first) !important;
}
section.map {
    margin-bottom: -8%;
}
.icon-box a img {
    width: 27%;
    display: block;
    margin: 0 auto;
}

.icon-box a p {
    text-align: center;
    color: var(--first);
    text-decoration: none;
    margin-top: 7%;
    font-size: 17px;
}

.icon-box a {
    text-decoration: none;
}

.icon-box {
    background: #f6f6f6;
    padding: 10% 0;
    border-radius: 11px;
    transition: all 500ms linear;
    height: 257px;
}

.icon-box:hover {
    background: var(--first);
}

.icon-box:hover a p {
    color: #fff;
}

.icon-box:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(180deg);
}

section.map .container .row {
    margin-top: 6%;
}
/* Contact page Css Start  */

/* Viracore Org Page Css Start  */
/* viracre detail  css  */
.viracore-detait h3 img {
    width: 25%;
    margin: 0;
    display: inline;
}

.viracore-detait h3 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 10%;
}

.viracore-detait p {
    font-size: 17px;
    line-height: 1.8;
}

.viracore-detait img {
    width: 85%;
    display: block;
    margin: 0 auto;
}
section.viracore .service-list {
    width: 33%;
    display: block;
    margin: 0 auto;
}
/* viracre detail  css  */
/* Viracore Org Page Css Start  */

/* Privacy Policy Page Css  */
.privacy-policy-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--first);
}

.privacy-policy-content p {
    font-size: 16px;
    margin-bottom: 2%;
    line-height: 1.8;
}

.privacy-policy-content {
    padding-top: 5% ;
}

.inner-banner-heading h1 span {
    color: var(--first);
}
.privacy-policy-content ul {
    padding: 0;
}

.privacy-policy-content ul li i {
    font-size: 16px;
    margin-right: 1%;
    line-height: 1.9;
    color: var(--first);
}

.privacy-policy-content ul li {
    list-style: none;
}

/* Privacy Policy Page Css  */

/* Seasons Pages Css  */
.nav-pills .nav-link.active {
    background: var(--first);
    color: var(--second) !important;
    padding: 11px 22px;
    border: 2px solid #000 !IMPORTANT;
    border-radius: 9px;
}

.nav-pills .nav-link {
    color: var(--first) !important;
    text-decoration: underline;
}

ul#pills-tab {
    display: flex;
    justify-content: center;
}
/* Seasons Pages Css  */