/* Font Family */
@import url("https://fonts.cdnfonts.com/css/sf-ui-display");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* Universal Css Start Here */
:root {
    --first-color: #c23127;
    --second-color: #2d2525;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SF UI Display", sans-serif;
}

@font-face {
    font-family: "Urbanist-Bold";
    src: url("../fonts/Urbanist/static/Urbanist-Bold.ttf");
}

@font-face {
    font-family: "Gilroy-Light";
    src: url("../fonts/Gilroy-Light.otf");
}

@font-face {
    font-family: "Gilroy-ExtraBold";
    src: url("../fonts/Gilroy-ExtraBold.otf");
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-Light";
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Urbanist-Light";
    src: url("../fonts/Urbanist/static/Urbanist-Light.ttf");
}

p {
    font-size: 16px;
}

h1 {
    font-family: "oriental";
    font-size: 111px;
    list-style: 121px;
}

h2 {
    font-family: "Poppins-Regular";
    font-size: 35px;
    /* font-weight: 600; */
}

h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}

h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

h5 {
    font-size: 13px;
    line-height: 23px;
}

.btn {
    font-family: "Poppins-Light";
    color: #fff;
}

a.kigi-btn {
    background-color: #0080FF;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s;
    border-radius: 50px;
}

figure {
    margin-bottom: 0;
}

/* Universal Css End Here */

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #0080FF;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #0080FF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.waviy {
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, .2));
    font-size: 60px;
}

.waviy span {
    position: relative;
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 500 !important;
    display: inline-block;
    color: #0080FF;
    text-transform: uppercase;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));

}

@keyframes waviy {

    0%,
    40%,
    100% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-20px)
    }
}

.ag-shake {

    -webkit-animation: 2s an-shake infinite alternate;
    -moz-animation: 2s an-shake infinite alternate;
    -o-animation: 2s an-shake infinite alternate;
    animation: 2s an-shake infinite alternate;
}

@-webkit-keyframes an-shake {

    0%,
    10% {
        -webkit-transform: skewX(-2deg);
        transform: skewX(-2deg);
    }

    15%,
    5% {
        -webkit-transform: skewX(2deg);
        transform: skewX(2deg);
    }

    100%,
    20% {
        -webkit-transform: skewX(0);
        transform: skewX(0);
    }
}

@-moz-keyframes an-shake {

    0%,
    10% {
        -moz-transform: skewX(-2deg);
        transform: skewX(-2deg);
    }

    15%,
    5% {
        -moz-transform: skewX(2deg);
        transform: skewX(2deg);
    }

    100%,
    20% {
        -moz-transform: skewX(0);
        transform: skewX(0);
    }
}

@-o-keyframes an-shake {

    0%,
    10% {
        -o-transform: skewX(-2deg);
        transform: skewX(-2deg);
    }

    15%,
    5% {
        -o-transform: skewX(2deg);
        transform: skewX(2deg);
    }

    100%,
    20% {
        -o-transform: skewX(0);
        transform: skewX(0);
    }
}

@keyframes an-shake {

    0%,
    10% {
        -webkit-transform: skewX(-2deg);
        -moz-transform: skewX(-2deg);
        -o-transform: skewX(-2deg);
        transform: skewX(-2deg);
    }

    15%,
    5% {
        -webkit-transform: skewX(2deg);
        -moz-transform: skewX(2deg);
        -o-transform: skewX(2deg);
        transform: skewX(2deg);
    }

    100%,
    20% {
        -webkit-transform: skewX(0);
        -moz-transform: skewX(0);
        -o-transform: skewX(0);
        transform: skewX(0);
    }
}

/* Mobile Header start here */


.mobile-header {
    width: 50%;
    height: 100%;
    overflow-x: scroll;
    position: fixed;
    background: #ffffffc2;
    top: 0;
    z-index: 9;
    right: 2px;
    padding: 35px 30px;
    transition: 0.7s;
    transform: translateX(100%) !important;
    box-shadow: 0px 0px 7px #ddd;
}

li.nav-link a {
    color: #000;
    text-decoration: none;
}

#header .mobile-header ul.mobile-nav {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

#header .mobile-header .cancel {
    background: #000000;
    width: 35px;
    text-align: center;
    height: 34px;
    line-height: 35px;
    color: #fff;
    padding: 4px 0px;
}

#header .mobile-header ul.mobile-nav li.nav-item {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #dddddd4a;
}

#header .mobile-header ul.mobile-nav li.nav-item a {
    color: #000000;
    font-size: 14px;
    padding: 0 20px;
}

#header .canvas-icon i {
    font-size: 22px;
    padding: 5px 7px;
    color: #0080FF;
    position: absolute;
    display: none;
    text-align: right;
    top: 6px;
    right: 35px;
    cursor: pointer;
}

#header .nav-link {
    padding: 7px 0;
}

#header li.nav-link a {
    font-size: 14px;
}

.responsive-contact-btn a {
    display: unset;
    padding: 9px 33px !important;
}

#header .mobile-header.showheader {
    transform: translateX(0%) !important;
}

.card-header-mobile {
    margin: 20px -5px;
}

button.btn-mobile a i.fa.fa-angle-down {
    margin: 5px 10px;
    position: absolute;
}

.accordion1 .card1 .card-body1 a.dropdown-item {
    color: #000000 !important;
    font-weight: 400;
    font-family: "Poppins";
    padding: 5px 24px 5px 17px;
    font-size: 14px;
}

li.nav-item-card i.fa.fa-search.yellowish-color {
    margin: 30px 40px;
    position: absolute;
    top: 67px;
    right: 5px;
}

/* this-web css start here */
.all-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

@media (max-width: 1024px) {
    li.normal-nav-items {
        padding: 8px 11px;
        margin-right: 7px;
    }

    .num-web h4 {
        font-size: 14px !important;
    }
}

/* this web css end here */
@media (max-width: 991px) {
    .avatar {
        background: black !important;
    }

    .side-num {
        display: none !important;
    }

    .all-nav {
        margin-top: 0;
        padding: 10px;
    }

    #header .nav {
        display: none;
    }

    .responsive-contact-btn {
        display: initial;
    }

    .navbar-items {
        display: none !important;
    }

    .all-normal-navs {
        justify-content: space-between !important;
    }

    #header .second-col-input {
        display: none;
    }

    #header button.navbar-toggler {
        display: none;
    }

    #header .canvas-icon i {
        display: block;
    }
}

@media (max-width: 575px) {
    #header .mobile-header {
        width: 35%;
    }
}

@media (max-width: 480px) {
    #header .mobile-header {
        width: 55%;
    }
}

/* Mobile Header end here */
ul.all-normal-navs li.normal-nav-items a.menu.active {
    color: #0d6efd;
}

.all-nav {
    background-color: #000000;
    border-bottom-right-radius: 27px;
    border-bottom-left-radius: 27px;
}

.for-logo {
    margin-left: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.all-normal-navs {
    display: flex;
    height: 64px;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0px;
    padding: 0;
}

.navbar-items {
    display: flex;
    margin-top: auto;
    margin-left: 35px ! important;
}

.normal-nav-items {
    padding: 8px 14px;
    margin-right: 11px;
}

.normal-nav-items a.active {
    /* border-bottom: 3px solid #88B379; */
    padding-bottom: 4px;
    background: #0080FF;
    padding: 24px 10px;
}


li {
    list-style-type: none;
}

.bar-icon {
    display: none;
}

li.normal-nav-items a i {
    padding-left: 8px;
}

.navbar-items a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Urbanist-Light";
    font-size: 13px;
    font-weight: 400;
}

/* search bar */

.page-heading {
    text-align: center;
    padding: 212px 0;
}

.dropdown-menu {
    background: #000000;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.all-nav .all-normal-navs .dropdown-menu {
    top: unset;
    width: auto;
}

a.dropdown-item {
    color: #FFFFFF !important;
    font-weight: 400;
    font-family: "Poppins";
    padding: 5px 24px 5px 17px;
    font-size: 14px;
}

.dropdown-item.dropdown a:hover .dropdown-menu111 {
    display: block !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125 !important;
    background-color: #e9ecef;
}

.for-logo img {
    width: 100%;
}

.avatar {
    background: #0080FF;
    padding: 10px 13px;
    width: 39px;
    border-radius: 100%;
    /* display: flex; */
    /* align-items: center; */
}

.side-num {
    display: flex;
    align-items: center;
    height: 100%;
    /* width: 21%; */
    gap: 10px;
    justify-content: center;
}

.num-web p {
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: 8px;
}

.num-web h4 {
    margin-bottom: 0;
    font-size: 17px;
    color: #FFFFFF;
}

.num-web {
    text-align: center;
}

/* header end here */
/* welcome-sec start here */
section.welcome-sec {
    background-image: url(../img/wel-sec.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 670px; */
}

.welcome-heading {
    padding-top: 175px;
    padding-bottom: 40px;
}

.main_heading span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.welcome-heading h2 {
    font-family: "Poppins-Regular";
    font-size: 65px;
    /* font-weight: 600; */
    line-height: 66px;
}


.main_heading h4 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    color: #0080FF;
    margin-bottom: 0;
}

.main_heading p {
    color: #7f7f7fbd;
    font-family: "Poppins-Light";
    font-size: 13px;
}

.learn-btn .btn {
    font-size: 12px;
    width: 140px;
    font-family: "Poppins-Light";
    border-radius: 25px;
    padding: 9px;
}

.play-vide {
    display: flex;
    gap: 17px;
    align-items: center;
}

.learn-all-btn {
    display: flex;
    gap: 55px;
    align-items: center;
    padding-top: 29px;
}

.video-name h5 {
    margin-bottom: 0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.video-name p {
    margin-bottom: 0;
    font-family: "Gilroy-Light";
    color: #A8B4B9;
}

.play-btn {
    background: black;
    width: 52px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    padding: 11px 16px;
    border: 5px solid #E5E8EA;
}

.happy-customer-here {
    width: 244px;
}

.happy-customer-here .about-person-active {
    margin-top: 10px;
    margin-left: 0 !important;
}

.person-active {
    display: flex;
}

.about-person-active p {
    margin-bottom: 0;
    font-family: "GTWalsheimPro-Medium";
    display: block;
    font-size: 12px;
}

.about-person-active span {
    font-family: "GTWalsheimPro-Medium";
    font-size: 12px;
    color: #0000009c;
}

.about-person-active {
    margin-top: 10px;
    margin-left: 10px;
}

.about-person-active h6 {
    margin-bottom: 0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    font-size: 13px;
}

.about-person-active span {
    color: #012532;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.active-two {
    background: #F9F9F9;
    border-radius: 42px;
    margin-top: 236px;
    width: 90%;
}

.calculate h6 {
    font-family: "Gilroy-ExtraBold";
    color: #012532;
    font-size: 13px;
}

.calculate span {
    color: #012532;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.active-third {
    margin-top: 22px;
    background: #F9F9F9;
    border-radius: 14px;
    align-items: center;
    padding: 3px 17px;
}

.box-calculator {
    display: flex;
    justify-content: space-between;
    margin-top: 82px;
}

.active-four {
    margin-top: 40px;
    background: #F9F9F9;
    border-radius: 14px;
    align-items: center;
    padding: 3px 17px;
    width: 80%;
    padding-bottom: 5px;
}

.calculate .btn {
    font-size: 10px;
    border-radius: 19px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    width: 92px;
    margin-top: 10px;
}

.calculate p {
    color: #01253285;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.active-four .calculate h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

/* welcome-sec end here */
/* <!-- storage-unit-sec start here --> */
.storage-unit-heading h2 {
    font-size: 40px;
    text-transform: uppercase;
}

.storade-head {
    display: flex;
    justify-content: center;
}

section.storage-unit-sec {
    padding-top: 96px;
    padding-bottom: 90px;
}

.unit-heading h2 {
    font-size: 26px;
}

.unit-box {
    text-align: center;
}

.points li::before {
    content: "";
    background-image: url(../img/check.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    /* position:absolute; */
    display: block;
    margin-right: 10px;
}

.points {
    position: relative;
    padding-top: 10px;
}

.points li {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
    font-family: "Poppins-Regular";
    font-size: 14px;
}

.unit-box {
    text-align: center;
    border-right: 1px solid #C3C3C3;
    border-left: 1px solid #C3C3C3;
    padding-top: 20px;
    padding-bottom: 23px;
}

.unit-two {
    border: 0 !important;
}

/* <!-- storage-unit-sec end here --> */
/* secure-sec start here */
.secure-heading h2 {
    font-size: 44px;
    text-transform: uppercase;
}

.secure-heading.main_heading {
    padding-top: 69px;
}

section.secure-sec {
    padding-top: 22px;
    padding-bottom: 50px;
}

/* secure-sec end here */

/* securestorage-sec start here */
.secure-storagesec {
    background-color: #F8F7F5;
    padding-top: 54px;
    padding-bottom: 70px;
}

.professional-storage h4 {
    color: #000000;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.professional-storage span {
    color: #000000 !important;
}

.clean-storage {
    padding-top: 38px;
}

.text-storage {
    text-align: right;
}

/* secure-storagesec end here */
/* <!-- peace-deliverysec start here --> */

section.peace-deliverysec {
    position: relative;
    height: 514px;
    padding-top: 100px;
}


.peace-box {
    background: #000000;
    height: 308px;
    padding: 35px 32px 0 0;
    border-radius: 14px;
}

.peace-img {
    position: relative;
    top: -146px;
    width: 678px;
    height: 442px;
}

.peace-img img {
    height: 100%;
    position: absolute;
    width: 100%;
}


.peace-heading h2 {
    color: #FFFFFF;
    text-transform: uppercase;
}

.peace-heading p {
    color: #ffffffab;
    font-family: "Poppins-Light";
    font-size: 12px;
}

@media (max-width:1200px) {
    .peace-img {
        width: 100%;
        height: 442px;
    }
}

@media (max-width:1024px) {
    .welcome-heading h2 {
        font-family: "Poppins-Regular";
        font-size: 47px;
    }
}

@media (max-width:990px) {
    .peace-heading h2 {
        font-family: "Poppins-Regular";
        font-size: 28px !important;
    }

    .peace-heading p {
        font-size: 10px !important;
    }
}

@media (max-width:900px) {
    .peace-box {
        height: auto;
    }

    section.peace-deliverysec {
        height: auto;
        padding-bottom: 50px;
    }

    .peace-heading.main_heading {
        padding: 20px 30px;
    }
}

@media (max-width:800px) {
    .peace-img {
        height: 300px;
        top: 0;
    }

    .professional-storage {
        text-align: center;
    }

    .peace-heading.main_heading {
        padding: 20px 30px;
    }

    .peace-heading h2 {
        font-family: "Poppins-Regular";
        font-size: 25px !important;
    }

    .peace-heading p {
        font-size: 10px !important;
    }

    h4 {
        font-size: 16px;
    }

    .all-clean-storage-professinal {
        display: flex;
        align-items: baseline;
        padding-top: 22px;
    }

    .professional-storage.clean-storage.text-storage {
        padding: 0;
    }
}

/* <!-- peace-deliverysec end here --> */
@media (max-width:580px) {
    section.welcome-sec {
        height: auto;
    }

    section.peace-deliverysec {
        position: relative;
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .peace-box {
        height: auto;
    }

    .peace-img img {
        height: auto;
    }

    .peace-img {
        position: relative;
        top: 0;
    }

    .peace-heading h2 {
        font-size: 20px;
    }

    .learn-all-btn {
        display: flex;
        flex-direction: column;
        padding-top: 29px;
    }

    .active-two {
        margin-top: 0 !important;
    }

    .box-calculator {
        margin-top: 0 !important;
        flex-direction: column;
        gap: 10px;
        justify-content: center !important;
        /* width: 100%; */
        justify-content: center;
    }

    .welcome-heading h2 {
        font-size: 30px;
    }

    .secure-heading h2 {
        font-size: 35px !important;
        text-transform: uppercase;
    }

    .professional-storage {
        text-align: center;
    }

    .text-storage {
        text-align: center;
    }

    h2 {
        font-size: 30px;
    }

    .all-clean-storage-professinal {
        display: flex;
        flex-direction: column;
    }

    .peace-img {
        height: auto;
    }

    .peace-img img {
        height: auto;
        position: unset !important;
    }

    .peace-box {
        height: auto;
        text-align: center;

    }
}

/* @media (max-width:768px) {
    .peace-img {
        top: 101px;
    }
    .peace-img img {
        height: auto;
        width: 63%;
    }
} */
/* footer start here */
.uper-footer {
    background-image: url(../img/uper-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid #A1A1A1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.all-footer-icon-logo {
    padding-top: 41px;
    padding-bottom: 40px;
    border-right: 1px solid #3D3D3D;
    height: 100%;
}

.fb-icon {
    margin: 0 6px;
}

.all-icon {
    display: flex;
    justify-content: left;
    padding-top: 21px;
}

.footer-logo img {
    width: 100%;
}

.footer-logo {
    width: 89%;
}

.cll-heading h5 {
    color: #0080FF;
    border-bottom: 1px solid #0080FF;
    /* width: 52px; */
    font-family: "Urbanist-Bold";
}

.call-nm {
    border-right: 1px solid #3D3D3D;
    height: 100%;
    /* padding-right: 10px; */
    padding: 40px 20px;
}

.phone-cll p {
    color: #FFFFFF;
    font-family: "Poppins-Regular";
    font-size: 14px;
}

.cll-us h5 {
    width: 56px;
}

.write h5 {
    width: 64px;
}

.address h5 {
    width: 96px;
}

.phone-cll {
    padding-top: 13px;
}

.add-num {
    border: 0 !important;
}

.right-reserved.text-right {
    text-align: right;
}

.right-reserved p {
    color: #A1A1A1;
    margin-bottom: 0;
    font-size: 13px;
    font-family: "Roboto-Regular";
}

.copyright {
    background: #151515;
    padding: 20px 0;
}

.copy-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copy-box a {
    color: #F8F8F8;
    text-decoration: none;
    font-size: 13px;
    font-family: "Poppins-Light";
}

.review {
    border-right: 1px solid #3D3D3D;
    padding-right: 14px;
}

@media (max-width: 768px) {
    .copy-box a {
        font-size: 9px;
    }

    .phone-cll p {
        font-size: 8px;
    }
}

@media (max-width: 580px) {

    .phone-cll p {
        font-size: 14px;
    }

    .review {
        padding-right: 5px;
    }

    .right-reserved.text-right {
        text-align: center;
        padding-bottom: 10px;
    }

    .right-reserved p {
        font-size: 10px;
    }
}

/* footer end here */
/* sidebar start here  */
#navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 8px;
    margin-bottom: 0;
    width: 100%;
    position: absolute;
    left: 0;
}

.arrow {
    /* transform: rotate(90deg); */
    margin: 10px 0;
}

div#navbar {
    position: relative;
}

.follow {
    transform: rotate(254deg);
    width: 83px;
    height: 90px;
    /* position: absolute; */
    left: 0;
}

.follow p {
    font-family: "Poppins-Regular";
    color: #02272F;
}

.navbar-fixed-left {
    width: 39px;
    justify-self: center;
    height: 100%;
    border-radius: 0;
    position: fixed;
    align-items: unset;
    top: 61px;
    z-index: 1030;
}

.down-follow {
    height: 180px;
    width: 168px;
    margin-top: 74px;
    margin-bottom: 42px;
}

.down-follow p {
    color: #000000;
    font-family: "Poppins-Regular";
}

.icon-side-bar .fa {
    margin: 7px;
}


@media (min-width: 768px) {

    .navbar-fixed-left,
    .navbar-fixed-right {
        width: 135px;
        /* height: 100vh; */
        border-radius: 0;
    }

    .navbar-fixed-left {
        right: auto !important;
        left: 0 !important;
        border-width: 0 1px 0 0 !important;
    }
}


@media screen and (max-width: 768px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #c8c9ce;
        text-align: center;
        width: 95%;
    }

}

/* sidebar end here  */