* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
    display: block;
}

ul,
li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol {
    margin: 0;
    padding: 0;
}

:root {
    --brand: #f9b707;
    --bg: #00204a;
    --subclr: #f1f1f1;
    --ff: 'Lato', sans-serif;
}

body {
    font-family: 'Lato', sans-serif;
}

.sub-btn button,
.comn-btn a {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-top: 30px;
    width: fit-content;
}

.sub-btn button:hover,
.comn-btn a:hover {
    background-color: var(--brand);
    box-shadow: 0px 15px 20px rgb(249, 183, 17, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.sub-btn button:active,
.comn-btn a:active {
    transform: translateY(-1px);
}

.navbar-brand {
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 3px;
}

.red-text {
    color: red;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    margin-top: 0;
}

/* .cmn-btn-reg button {
  width: 10em;
  position: relative;
  height: 3.5em;
  border: 3px ridge var(--brand);
  outline: none;
  background-color: transparent;
  color: white;
  transition: 1s;
  border-radius: 0.3em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.cmn-btn-reg button:hover{
  border: 3px ridge #149CEA;
}


.cmn-btn-reg button:hover::before, button:hover::after {
  transform: scale(0)
}

.cmn-btn-reg button:hover {
  box-shadow: inset 0px 0px 25px #1479EA;
} */

.cmn-btn-reg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    overflow: hidden;
    height: 3rem;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121), linear-gradient(137.48deg, #ffdb3b 10%, #FE53BB 45%, #8F51EA 67%, #0044ff 87%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

#container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

strong {
    z-index: 2;
    font-family: 'Avalors Personal Use';
    font-size: 12px;
    letter-spacing: 5px;
    color: #FFFFFF;
    text-shadow: 0 0 4px white;
}

#glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
}

.circle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
}

.cmn-btn-reg:hover #container-stars {
    z-index: 1;
    background-color: #212121;
}

.cmn-btn-reg:hover {
    transform: scale(1.1)
}

.cmn-btn-reg:active {
    border: double 4px #FE53BB;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.cmn-btn-reg:active .circle {
    background: #FE53BB;
}

#stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

#stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

#stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

#stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

#stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* common css end */

/* nav section start */

.main-menu ul li a {
    font-family: var(--ff);
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    /* margin: 0 10px; */
    margin-right: 15px;
    transition: all linear .3s;
    position: relative;
}

.main-menu ul li a::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all linear .3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--brand);
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}

.main-menu ul li a:hover {
    color: var(--brand);
}

.main-menu ul li a:hover::after {
    opacity: 1;
}

.main-menu {
    background-color: var(--bg);
    padding: 20px 0;
}

.contact-map iframe {
    width: 100%;
}

/* .main-menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
} */

.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent !important;
}

.dropdown-menu {
    background: var(--bg) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* nav section end */

/* login form section end */

.login-cont {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-form input {
    width: 100% !important;
}

.box {
    padding: 20px;
}

.toggle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    background: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-btn.active {
    background: var(--brand);
    color: #fff;
}

.form-wrapper {
    transition: all 0.3s ease;
}

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

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
}

.submit-btn {
    padding: 10px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

.modal-content {
    color: #fff !important;
    background: var(--bg) !important;
}

/* login form section end */

/* banner section start */

#banner {
    height: 100vh;
}

.banner_item {
    /* padding: 150px 0; */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-text {
    padding-top: 200px;
}

.banner-text p {
    color: #999;
    padding-top: 20px;
}

.banner-text h1 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
}

.banner_text h1 {
    color: #fff;
    font-size: 90px;
    font-weight: 400;
    font-family: var(--ff);
    letter-spacing: 2px;
}

.banner_text h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    font-family: var(--ff);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    padding-top: 40px;
    position: relative;
}

.banner_text h4::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 23px;
    width: 500px;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.banner_text h4::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -23px;
    width: 500px;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.btm_circles {
    position: absolute;
    height: 300px;
    width: 300px;
    bottom: -178px;
    left: 50%;
    background: var(--brand);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.btm_circles h5 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    font-family: var(--ff);
    margin: 40px 0 0.2em;
}

.btm_circles p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--ff);
}

#customer .slick-dots,
#banner .slick-dots {
    position: absolute;
    right: 20px;
    bottom: 35%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#banner .slick-dots li button {
    font-size: 0;
    height: 25px;
    width: 10px;
    border: 1px solid #ffffff;
    background: transparent;
    margin: 0 8px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

#customer .slick-dots li.slick-active button,
#banner .slick-dots li.slick-active button {
    background: var(--brand);
    border-color: var(--brand);
}

.banner-img {
    margin-top: 20px;
}

.mission-img img,
.faq-img img,
.ico-img,
.about-img img,
.banner-img img {
    -webkit-animation: upDown 5s infinite;
    animation: upDown 5s infinite;
}

@-webkit-keyframes upDown {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
    }
    50% {
        -webkit-transform: translateY(45px);
        transform: translateY(45px);
    }
    100% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
    }
    50% {
        -webkit-transform: translateY(45px);
        transform: translateY(45px);
    }
    100% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
    }
}

/* banner section end */

/* service section start */

#service {
    padding: 80px 0;
}

.common-heading h4 {
    font-weight: 700;
    font-size: 40px;
}

.cmn-clr {
    color: #f1f1f1;
}

.cmn-clr-light {
    color: #f1f1f1;
}

body {
    background: #000;
}

.common-heading h4 span {
    color: var(--brand);
}

.common-heading p {
    color: #999;
    font-weight: 400;
    font-size: 18px;
    padding-top: 15px;
}

.card-body img {
    width: 125px;
}

.card-body h4 {
    color: var(--subclr);
    /* text-shadow: 0px 0px 10px var(--bg); */
    font-weight: 700;
    font-family: var(--ff);
    font-size: 24px;
    text-transform: uppercase;
    padding: 15px 0;
}

.card-body p {
    color: var(--subclr);
    opacity: .8;
}

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

.card-body {
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    border-radius: 10px !important;
    padding: 40px 15px;
}

.card {
    border: none;
    border-radius: 10px !important;
}

/* service section end */

/* about section start */

#about {
    background: var(--bg);
    padding: 80px 0;
}

.blog-details h4,
.about-text h4 {
    color: var(--brand);
    font-weight: 700;
    font-family: var(--ff);
    font-size: 44px;
}

.about-text p {
    color: #999;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-top: 15px;
}

.about-text {
    margin-top: 100px;
    margin-left: 15px;
}

/* about section end */

/* choose section start */

#choose {
    padding: 80px 0;
}

.choose-content {
    margin-top: 40px;
}

/* choose section end */

/* team section start */

#team {
    padding: 80px 0;
    background: var(--bg);
}

.team-member {
    padding: 35px 0 0 0;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all .1s;
    transition: all .1s;
    margin-top: 45px;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64)); */
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
}

.team-member img {
    width: 120px;
    border-radius: 100%;
    border: 5px solid #ffffff;
}

.team-member h4 {
    color: var(--brand);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 20px;
    font-family: var(--ff);
}

.team-member p {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    font-family: var(--ff);
}

.icon a {
    color: #fff;
    margin: 40px 10px;
    font-size: 24px;
    transition: all linear .3s;
}

.icon a:hover {
    color: var(--brand);
    transform: rotate(360deg);
}

/* team section end */

/* ico section start */

#ico {
    padding: 80px 0;
}

.ico-text {
    margin-top: 25%;
}

.ico-text h4 {
    color: var(--brand);
    font-weight: 700;
    font-size: 35px;
    text-transform: uppercase;
}

.ico-abc p span {
    padding-right: 10px;
    color: var(--brand);
}

.ico-abc p {
    color: #999;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 400;
    font-family: var(--ff);
}

.ico-abc {
    margin: 20px;
}

.ico-content {
    margin-top: 50px;
}

/* ico section end */

/* customer section start */

#customer {
    padding: 80px 0;
    background: var(--bg);
}

.customer-inner {
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    padding: 20px;
    position: relative;
    margin-top: 60px;
    border-radius: 5px;
}

.customer-img {
    margin-top: 60px;
}

.customer-img img {
    position: absolute;
    top: 0;
    left: 80%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid #ffffff;
}

.customer-inner h4 {
    color: var(--brand);
    font-weight: 700;
    font-size: 24px;
    font-family: var(--ff);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.customer-inner h6 {
    color: var(--subclr);
    font-weight: 400;
    font-size: 18px;
    font-family: var(--ff);
}

.blog-details p,
.customer-inner p {
    color: var(--subclr);
    padding-top: 15px;
    line-height: 28px;
    opacity: .8;
}

/* customer section end */

/* faq section start */

#faq {
    padding: 80px 0;
    background: var(--bg);
}

.accordion-button:not(.collapsed) {
    background-color: var(--brand);
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.accordion-header button {
    background-color: var(--brand) !important;
    color: #fff;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--brand) !important;
    outline: 0;
    box-shadow: none !important;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: 1px solid var(--brand);
}

.accordion-header {
    border-bottom: 1px solid;
}

.accordion-body {
    background-color: var(--bg);
    border-bottom: 1px solid var(--subclr);
    color: #fff;
}

.faq-inner {
    margin-top: 30%;
}

/* faq section end */

/* blog section start */

#blog {
    padding: 80px 0;
}

.bolg-inner img {
    border-radius: 10px 10px 0 0;
    transform: scale(1);
    transition: all linear .3s;
    position: relative;
}

.bolg-inner:hover img {
    transform: scale(1.2);
    margin-bottom: 15px;
}

.blog-content {
    margin-top: 50px;
}

.bolg-inner {
    overflow: hidden;
    /* padding: 25px 20px; */
    /* text-align: center; */
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    border-radius: 10px;
}

.blog-details h4 {
    font-size: 30px;
    color: #fff;
}

/* blog section end */

/* chart section start */

#chart {
    padding: 80px 0;
}

.iq-tranding-Platform .nav-tabs {
    border: none;
}

.iq-tranding-Platform .nav-tabs .nav-link:first-child {
    -webkit-border-top-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    border-top-left-radius: 30px;
}

.iq-tranding-Platform .nav-tabs .nav-link:last-child {
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    border-top-right-radius: 30px;
}

.iq-tranding-Platform .nav-tabs .nav-link {
    padding: 15px 20px;
    text-align: center;
    width: 20%;
    color: var(--white);
    border: none;
    background: var(--iq-dark-bg);
    position: relative;
}

.iq-tranding-Platform .nav-tabs .nav-link:hover:before,
.iq-tranding-Platform .nav-tabs .nav-link.active:before,
.iq-tranding-Platform .nav-tabs .nav-item.show .nav-link {
    content: "";
    bottom: 0;
    left: 0;
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--iq-primary);
}

.iq-tranding-Platform .nav-tabs .nav-link i {
    font-size: 42px;
    margin-bottom: 5px;
}

.iq-tranding-Platform .nav-tabs .nav-link span {
    display: block;
    font-size: 16px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    background: var(--iq-light);
    border: none;
    color: var(--iq-primary);
}

.iq-tranding-Platform .light-bg {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.iq-tranding-Platform .tab-content {
    padding: 15px;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid var(--iq-table-brder);
    color: var(--white);
}

#chartdiv {
    width: 100%;
    height: 500px;
}

#chartdiv .amcharts-chart-div a,
#chartrounddiv .amcharts-chart-div a,
.amcharts-export-menu.amcharts-export-menu-top-right.amExportButton {
    display: none !important;
}

#chartrounddiv {
    width: 100%;
    height: 500px;
    font-size: 11px;
}

#chartnew {
    width: 100%;
    height: 500px;
}

.amcharts-pie-slice {
    transform: scale(1);
    transform-origin: 50% 50%;
    transition-duration: 0.3s;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    cursor: pointer;
    box-shadow: 0 0 30px 0 var(--white);
}

.amcharts-pie-slice:hover {
    transform: scale(1.1);
    filter: url(#shadow);
}

/* chart section end */

/* contact section start */

#contact {
    padding: 80px 0;
    background-color: var(--bg);
}

.contact-form {
    padding: 30px 30px;
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    border-radius: 10px;
}

.contact-form h4 {
    font-size: 40px;
    color: var(--subclr);
    font-weight: 600;
    padding-bottom: 20px;
}

.contact-form p {
    font-size: 18px;
    color: var(--subclr);
    opacity: .8;
    padding-bottom: 20px;
}

.contact-form form textarea {
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    opacity: .8;
    /* color: var(--subclr); */
    box-shadow: 0 0 30px 0 var(--brand);
    margin-bottom: 24px;
    width: 100%;
    height: 150px;
    border: none;
}

.contact-form form input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    margin-bottom: 20px;
    /* color: var(--subclr); */
    opacity: .8;
    /* background: transparent; */
    /* border: 1px solid var(--bg); */
    box-shadow: 0 0 30px 0 var(--brand);
}

/* .particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  pointer-events: none;
  z-index: 99999999999999999;
} */

body {
    direction: ltr;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: all 0.25s ease-in-out 0s;
}

.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999999999999;
}

.contact-address ul li i {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: var(--brand);
    color: var(--subclr);
    font-size: 25px;
    margin-right: 20px;
}

.contact-map {
    margin-top: 13%;
}

.contact-content {
    margin-top: 80px;
}

/* contact section start */

/* footer section start */

/* Footer Top */

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
    font-size: 30px;
    color: var(--brand) !important;
}

/* .single-cta i {
  font-size: 20px;
  color: var(--brand);
} */

.single-cta svg {
    font-size: 45px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    /* margin-bottom: 2px; */
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--brand) !important;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--subclr);
    line-height: 28px;
}

.offcanvas-title {
    color: var(--brand);
    font-weight: 700;
}

.offcanvas-header {
    border-bottom: 1px solid #f1f1f187;
}

.offcanvas-header button {
    color: var(--subclr);
    font-weight: 700;
}

.social-icon {
    margin-top: 30px;
}

.social-icon a {
    color: var(--subclr);
    font-size: 16px;
    margin-right: 15px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid var(--bg);
    background-color: var(--bg);
}

.social-icon a:hover {
    background-color: var(--brand);
    color: var(--subclr);
    border-color: var(--brand);
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--brand);
}

.footer-widget ul li {
    /* display: inline-block; */
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: var(--brand);
}

.footer-widget ul li a {
    color: var(--subclr);
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    border: 1px solid #2e2e2e;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: linear-gradient(to right, #002759 0%, #f9b707 100%);
    color: var(--subclr);
    padding: 15px 20px;
    border: 1px solid var(--bg);
    top: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: var(--brand);
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: var(--brand);
}

.footer-menu li a {
    font-size: 14px;
    color: var(--subclr);
}

/* footer section start */

/* btn_top_bottom part start */

.btn_top_bottom {
    color: #fff;
    text-align: center;
    background: var(--brand);
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99999999999;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 8px;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
}

.btn_top_bottom i p {
    color: var(--subclr);
    font-size: 8px;
    padding-top: 10px;
    letter-spacing: 2px;
}

.btn_top_bottom {
    display: none;
}

/* btn_top_bottom part end */

/* =================================
       About page
=====================================*/

.banner-header {
    padding: 200px 0;
}

#banner-section {
    /* background: linear-gradient(to right, #002759 0%, #f9b707 100%); */
    position: relative;
    z-index: 1;
}

#banner-section::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.613);
    z-index: -1;
}

.banner-header h2 {
    color: var(--brand);
    font-size: 65px;
    font-weight: 700;
}

.banner-header h2 span {
    color: var(--subclr);
}

.banner-header h5 {
    color: var(--brand);
    font-weight: 500;
    font-size: 25px;
    padding-top: 10px;
}

.banner-header a {
    color: var(--subclr);
}

/* mission */

#vision,
#mission {
    padding: 80px 0;
}

.mission-text h4 {
    color: var(--brand);
    font-weight: 700;
    font-size: 40px;
    padding-bottom: 30px;
    position: relative;
}

.mission-text h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 18px;
    height: 3px;
    width: 70px;
    background: var(--brand);
}

.mission-text h4 span {
    color: var(--subclr);
}

.mission-text p {
    color: #999;
    font-size: 18px;
}

.mission-text p span {
    display: block;
    padding-top: 20px;
}

/* mission */

/* vision */

#vision {
    background-color: var(--bg);
}

/* vision */

/* Services Page */

.service-section {
    background-color: var(--bg);
}

/* blog page */

.blog-section {
    background-color: var(--bg);
}

#oopss {
    background: #00204a;
    padding: 100px 0;
}

#oopss #error-text {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Shabnam', Tahoma, sans-serif;
    color: #f9b707;
    direction: rtl;
}

#oopss #error-text img {
    margin: 85px auto 20px;
    height: 250px;
}

#oopss #error-text span {
    position: relative;
    font-size: 3.3em;
    font-weight: 900;
    margin-bottom: 50px;
}

#oopss #error-text p.p-a {
    font-size: 19px;
    margin: 30px 0 15px 0;
}

#oopss #error-text p.p-b {
    font-size: 15px;
}

#oopss #error-text .back {
    background: #fff;
    color: #000;
    font-size: 30px;
    text-decoration: none;
    margin: 2em auto 0;
    padding: .7em 2em;
    border-radius: 500px;
    box-shadow: 0 20px 70px 4px rgba(0, 0, 0, 0.1), inset 7px 33px 0 0px #f9b707;
    font-weight: 900;
    transition: all 300ms ease;
}

#oopss #error-text .back:hover {
    -webkit-transform: translateY(-13px);
    transform: translateY(-13px);
    box-shadow: 0 35px 90px 4px rgba(0, 0, 0, 0.3), inset 0px 0 0 3px #f9b707;
}

/* ================ preloader ================ */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #151414;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border-style: solid;
    border-width: 3px;
    border-top-color: var(--bg);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.preloader .preloader-circle2 {
    border-top-color: var(--brand);
}

.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.preloader .preloader-img img {
    max-width: 90px;
}

.preloader .pere-text strong {
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

.swapping-squares-spinner,
.swapping-squares-spinner * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swapping-squares-spinner {
    height: 65px;
    width: 65px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swapping-squares-spinner .square {
    height: 12.5px;
    width: 12.5px;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    border: 2px solid var(--brand);
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.swapping-squares-spinner .square:nth-child(1) {
    -webkit-animation-name: swapping-squares-animation-child-1;
    animation-name: swapping-squares-animation-child-1;
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

.swapping-squares-spinner .square:nth-child(2) {
    -webkit-animation-name: swapping-squares-animation-child-2;
    animation-name: swapping-squares-animation-child-2;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.swapping-squares-spinner .square:nth-child(3) {
    -webkit-animation-name: swapping-squares-animation-child-3;
    animation-name: swapping-squares-animation-child-3;
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

.swapping-squares-spinner .square:nth-child(4) {
    -webkit-animation-name: swapping-squares-animation-child-4;
    animation-name: swapping-squares-animation-child-4;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

@-webkit-keyframes swapping-squares-animation-child-1 {
    50% {
        -webkit-transform: translate(150%, 150%) scale(2, 2);
        transform: translate(150%, 150%) scale(2, 2);
    }
}

@keyframes swapping-squares-animation-child-1 {
    50% {
        -webkit-transform: translate(150%, 150%) scale(2, 2);
        transform: translate(150%, 150%) scale(2, 2);
    }
}

@-webkit-keyframes swapping-squares-animation-child-2 {
    50% {
        -webkit-transform: translate(-150%, 150%) scale(2, 2);
        transform: translate(-150%, 150%) scale(2, 2);
    }
}

@keyframes swapping-squares-animation-child-2 {
    50% {
        -webkit-transform: translate(-150%, 150%) scale(2, 2);
        transform: translate(-150%, 150%) scale(2, 2);
    }
}

@-webkit-keyframes swapping-squares-animation-child-3 {
    50% {
        -webkit-transform: translate(-150%, -150%) scale(2, 2);
        transform: translate(-150%, -150%) scale(2, 2);
    }
}

@keyframes swapping-squares-animation-child-3 {
    50% {
        -webkit-transform: translate(-150%, -150%) scale(2, 2);
        transform: translate(-150%, -150%) scale(2, 2);
    }
}

@-webkit-keyframes swapping-squares-animation-child-4 {
    50% {
        -webkit-transform: translate(150%, -150%) scale(2, 2);
        transform: translate(150%, -150%) scale(2, 2);
    }
}

@keyframes swapping-squares-animation-child-4 {
    50% {
        -webkit-transform: translate(150%, -150%) scale(2, 2);
        transform: translate(150%, -150%) scale(2, 2);
    }
}

.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: -webkit-gradient( linear, left top, left bottom, from(white), to(black));
    background: linear-gradient(to bottom, white, black);
}