html {
    height: 100%;
}

body {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background: #020912;
    transition: .2s all ease-in-out;
}

body.fxdPos {
    overflow: hidden;
}

.container {
    max-width: 1170px;
}

p {
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    color: #616161;
}

h6 {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-liquid {
    display: flex;
    position: relative;
    border-radius: 27px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    width: 40%;
}

.btn-liquid:hover {
    color: #757c85;
    outline: none;
}

.btn-liquid:focus {
    outline: none;
}

a.btn-liquid svg {
    overflow: visible !important;
}

header {
    padding: 20px 0px 0;
    position: relative;
    z-index: 11;
    background: #020912;
    transition: .5s all ease-in-out;
    top: 0;
}

header.animateIt {
    position: fixed;
    top: -160px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 0.4s top cubic-bezier(.3, .73, .3, .74);
    border-bottom: 1px solid #ed3338;
}

body.down header.animateIt {
    top: 0;
}

.an-navbar .navbar-brand {
    width: 20%;
}

ul.navbar-nav .nav-item a.nav-link {
    color: #b5c1e9;
    text-transform: uppercase;
    padding: 0 12px;
}

ul.navbar-nav .nav-item.active a.nav-link {
    color: #ed3338;
}

ul.navbar-nav .nav-item a.nav-link:hover {
    color: #ed3338;
}

ul.navbar-nav .nav-item .dropdown-menu {
    background: #020912;
    border: 1px solid #ed3338;
    text-transform: uppercase;
}

ul.navbar-nav .nav-item .dropdown-menu a {
    color: #b5c1e9;
}

ul.navbar-nav .nav-item .dropdown-menu a:hover {
    background: #ed3338;
    color: #000;
}


.wrapper {
    position: relative;
    background: url(../images/line.png) no-repeat top center;
    background-size: 91%;
}

.fulLine img {
    position: absolute;
    left: 0;
    right: 0;
    width: 91%;
    margin: auto;
}

.misionContent h2 {
    font-size: 22px;
    color: #ccd6f6;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    padding-left: 121px;
    margin-bottom: 10px;
}

.misionContent h2:after {
    content: '';
    position: absolute;
    left: 0;
    background-color: #757c85;
    width: 105px;
    height: 1px;
    top: 12px;
}

.misionContent h3 {
    font-size: 75px;
    color: #b5c1e9;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 25px;
}

.misionContent p {
    font-size: 14px;
    color: #81868e;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
}

.themeBtn {
    border-width: 2px;
    border-color: #ed3338;
    border-style: solid;
    background-color: rgb(2, 9, 18);
    /* width: 209px; */
    /* height: 55px; */
    font-size: 14px;
    color: #ccd6f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 50px;
    padding: 15px 39px;
    font-weight: 500;
}

.leftImg {
    margin-right: -15%;
    height: 400px;
    width: 100%;
}

.ourMision {
    padding: 90px 0 40px;
    position: relative;
}

.leftImg figure img {
    animation: scrollLeftAnimation .5s ease infinite alternate;
    -webkit-animation: scrollLeftAnimation .5s ease infinite alternate;
}

@keyframes scrollLeftAnimation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-10px);
    }
}

@-moz-keyframes scrollLeftAnimation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-10px);
    }
}

@-webkit-keyframes scrollLeftAnimation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-10px);
    }
}

.themeBtn:hover {
    background-color: #ed3338;
    border-color: #ed3338;
    color: #000;
}

.scrolContent {
    position: absolute;
    left: -70px;
    bottom: 130px;
    transform: rotate(90deg);
    writing-mode: lr-tb;
}

.scrolContent h6 {
    color: #757c85;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
}

.scrolContent h6 a {
    transform: rotate(90deg);
    writing-mode: lr-tb;
    display: inline-block;
    margin-left: 10px;
}

.scrolContent h6:after {}

.scrolContent h6:after {
    content: '';
    position: absolute;
    left: 0;
    background-color: #757c85;
    width: 105px;
    height: 1px;
    top: 15px;
    left: -120px;
}

.mousedown {
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-moz-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.socialRght {
    position: absolute;
    right: 38px;
    bottom: 20px;
}

.socialRght ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.socialRght ul li a {
    color: #757c85;
    font-size: 14px;
}

.socialRght ul li {
    margin: 0 0 20px 0;
}


.stroke {
    font-weight: bold;
    font-size: 90px;
    text-transform: uppercase;
    color: #020912;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255 255 255 / 20%);
    transition: 0.3s all;
    line-height: 1;
}

.aboutSection {
    padding: 200px 0;
}

.aboutSection .aboutimg {
    width: 100%;
    height: 500px;
}

.aboutSection .aboutimg canvas {
    width: 100%;
    height: 100%;
}

.aboutSection h2 {
    font-size: 50px;
    color: #b5c1e9;
    text-transform: uppercase;
    font-weight: bold;
}

.aboutSection p,
.aboutSection ul li {
    font-size: 14px;
    color: #81868e;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
}

.aboutSection ul {
    padding: 0;
    list-style-position: inside;
}

.aboutSection ul li {
    margin-bottom: 15px;
}

.srvcBox {
    position: relative;
    z-index: 1;
}

.srvcHead {
    text-align: center;
    margin-bottom: 100px;
}

.srvcHead h3 {
    font-size: 75px;
    color: #b5c1e9;
    text-transform: uppercase;
    font-weight: bold;
    margin: -25px 0 0;
}


.serviceContent {
    text-align: center;
    padding: 70px 30px 55px;
    height: 100%;
    z-index: 1;
    position: relative;
    background: #fff;
}

.serviceContent:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ed3338;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.serviceContent:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, .37, .66);
    transition-timing-function: cubic-bezier(0.52, 1.64, .37, .66);
}

.serviceContent figure {
    width: 70px;
    height: 70px;
    position: relative;
    float: none;
    margin: 0;
    text-align: center;
    margin: auto;
}

.serviceContent figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}

.serviceContent figure img.img-before {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
}

.serviceContent:hover img {
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

.serviceContent:hover .img-before {
    -webkit-transform: translate(-50%, -50%) scale(1, 0);
    transform: translate(-50%, -50%) scale(1, 0);
}

.serviceContent figure img.img-after {
    -webkit-transform: translate(-50%, -50%) scale(1, 0);
    transform: translate(-50%, -50%) scale(1, 0);
}

.serviceContent:hover .img-after {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
}

.serviceContent h2 {
    font-size: 20px;
    font-weight: 700;
    height: 40px;
    margin-bottom: 0px;
    margin-top: 30px;
    transition: .4s all ease-in-out;
}

.serviceContent p {
    margin-top: 20px;
    transition: .4s all ease-in-out;
    color: #000;
}

.serviceContent:hover h2,
.serviceContent:hover p {
    color: #fff;
}

.serviceContent .serviceBtn {
    margin-top: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
}

.serviceContent .serviceBtn a {
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #b6282d;
    line-height: 40px;
    transition: .3s;
    transform: scale(1.3);
}

.serviceContent:hover .serviceBtn {
    opacity: 1;
}

.serviceContent:hover .serviceBtn a {
    transform: scale(1);
}

.chooseContent {
    display: flex;
    align-items: center;
    gap: 18px;
}

.chooseContent h2 {
    font-size: 150px;
    color: #020912;
    font-weight: 600;
    margin: 0;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #b5c1e9;
}

.chooseContent h3 {
    font-size: 50px;
    color: #b5c1e9;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.chosePara p {
    font-size: 14px;
    color: #81868e;
    font-weight: 500;
    margin: 0;
}

.choseImg {
    width: 674px;
    height: 503px;
    margin-left: auto;
}

.whyChose {
    padding: 100px 0;
}

.leftCore .chosePara p {
    text-align: right;
}

.leftCore .chooseContent h3 {
    text-align: right;
}

.leftCore .chooseContent {
    margin-left: -5%;
}

.leftCore {
    margin-top: 150px;
}

.leftHand {
    /* margin-left:-1.4%; */
    width: 777px;
    height: 566px;
}

.difrContent p {
    font-size: 14px;
    color: #81868e;
    font-weight: 500;
    margin: 0;
    line-height: 27px;
}

.difrContent p+p {
    margin: 35px 0 0;
}

.diferBox {
    padding: 0 0 115px;
}

.testimonialBox {
    background-color: #fff;
    padding: 100px 0 200px;
}


.testimonialContent {
    text-align: center;
}

.testimonialHead h2 {
    font-size: 16px;
    color: #939598;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.testimonialHead h3 {
    font-size: 50px;
    color: #020912;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 35px;
    position: relative;
}

.testimonialHead h3:after {
    content: '';
    position: absolute;
    left: 50px;
    background: url(../images/quote.png) no-repeat;
    width: 125px;
    height: 99px;
    top: -20px;
}

.testimonialContent p {
    font-size: 17px;
    color: #4f4f4f;
    font-weight: 500;
    font-style: italic;
    line-height: 29px;
    margin: 25px 0 35px;
}

.testimonialContent h4 {
    font-size: 18px;
    color: #00397c;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.testimonialHead {
    text-align: center;
}

.main-slider .carousel-control-prev {
    left: -40px;
    color: #c8c7d6;
    opacity: 1;
    font-size: 38px;
    top: 22%;
    width: auto;
    height: auto;
}

.main-slider .carousel-control-next {
    right: -40px;
    color: #c8c7d6;
    opacity: 1;
    font-size: 38px;
    top: 22%;
    width: auto;
    height: auto;
}

.main-slider .carousel-indicators {
    bottom: -90px;
    gap: 5px;
}

.main-slider .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: #b3d0e8;
    border-radius: 50%;
    opacity: 1;
}

.main-slider .carousel-indicators .active {
    background-color: #ed3338;
}

.main-slider .carousel-control-prev:hover,
.main-slider .carousel-control-next:hover {
    color: #ed3338;
}

.newsletter {
    padding: 110px 0 0;
}

.newsletter .chooseContent h3 {
    text-transform: uppercase;
    margin: 0 0 30px;
}

.newsletter .chooseContent h3 span {
    display: block;
}

.signUpContent form input {
    border-width: 2px;
    border-color: rgb(70, 70, 70);
    border-style: solid;
    background-color: rgb(2, 9, 18);
    width: 325px;
    height: 61px;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 30px;
    letter-spacing: 2px;
    color: #fff;
}

.newsletrBtn {
    all: unset;
    border-width: 2px;
    border-color: #ed3338;
    border-style: solid;
    background-color: #ed3338;
    font-size: 16px;
    color: #020912;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    width: 224px;
    height: 61px;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: 0.6s;
}

.signUpContent form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.getContent .stroke {
    font-size: 151px;
}

.newsletrBtn:hover {
    background-color: #b5c1e9;
    border-color: #b5c1e9;
    color: #fff;
    transition: 0.6s;
}

.signUpContent {
    margin-bottom: 60px;
}



.ftrLogo p {
    font-size: 14px;
    color: #81868e;
    font-weight: 500;
    line-height: 28px;
    margin: 30px 78px 0 0;
}

.ftrQuick h2 {
    font-size: 20px;
    color: #b5c1e9;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 25px;
}

.ftrQuick ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ftrQuick ul li a {
    font-size: 15px;
    color: #81868e;
    font-weight: 500;
}

.ftrQuick ul li+li {
    padding: 5px 0 0;
}

.ftrInfo a {
    font-size: 15px;
    color: #81868e;
    font-weight: 500;
}

.ftrInfo p {
    color: #81868e;
    font-weight: 500;
    margin-bottom: 6px
}

.quickLeft {
    margin-left: 15px;
}

.ftrInfo .emlColor {
    color: #ed3338;
}

.copyRght p {
    font-size: 14px;
    color: #757c85;
    font-weight: 500;
    border-top: 1px solid #0f161e;
    padding: 42px 0;
    margin: 70px 0 0;
}

footer {
    padding: 90px 0 0;
}

.ftrQuick ul li a:hover {
    color: #ed3338;
}

.socialRght ul li a:hover,
.ftrInfo a:hover {
    color: #ed3338;
}


.worldImg {
    width: 585px;
    height: 486px;
}

.logo img {
    width: 230px;
}

.ftrLogo img {
    max-width: 330px;
}

/* Map Start */
.market-section {
    background-color: #fff;
    padding: 100px 0;
    color: #767171;
}

.map {
    text-align: center;
}

.market-section h3 {
    font-size: 50px;
    color: #020912;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 3rem;
}

.market-section h4 {
    font-size: 1.125rem;
    color: #020912;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 1rem;
    flex: 1;
}


.market-section .points {
    gap: 10px;
    align-items: baseline;
}

.market-section .points .color {
    width: 10px;
    height: 10px;
    background-color: #548235;
}

.market-section .points .color2,
.market-section .points .color3 {
    background-color: #c5e0b4;
}

.market-section .points .color4 {
    background-color: #767171;
}

.market-section .points .color5 {
    background-color: #d9d9d9;
}


.market-section ul {
    padding: 0;
    list-style-position: inside;
}

#map-container {
    width: 100%;
    margin: 2em auto;
    text-align: center;
}

div#usa-map {
    width: 100% !important;
    height: auto !important;
}

#svggroup svg {
    width: 100% !important;
    height: auto;
}

#svggroup {
    background-color: #fff;
    padding: 2rem 0;
}

#svggroup path {
    transition: fill 0.5s ease;
    -moz-transition: fill 0.5s ease;
    -webkit-transition: fill 0.5s ease;
    /* fill: #b6d68b; */
}

/* #svggroup #s48 path {
    transition: fill 0.5s ease;
    -moz-transition: fill 0.5s ease;
    -webkit-transition: fill 0.5s ease;
    fill: #cfb48c;
} */

/* Map end */

/*innercss*/
.innerbanner h3:before {
    position: absolute;
    content: "";
    width: 20%;
    height: 1px;
    background-color: #757c85;
    top: -30%;
    left: 0;
}

.Contentinner h3 {
    font-size: 50px;
    padding-bottom: 25px;
    color: #b5c1e9;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.Contentinner {
    margin-top: 200px;
}

.teamContent {
    margin-top: -16px;
    border-bottom-left-radius: 15px;
    background-color: #fff;
    border-bottom-right-radius: 15px;
    padding-left: 30px;
    height: 150px;
    flex-direction: column;
    justify-content: center;
    padding-top: 26px;
}

.teamContent h4 {
    font-size: 30px;
    font-weight: 800;
    margin: 0px;
    padding-bottom: 20px;
}

.btnwhite {
    border-radius: 50px;
    border: 2px solid #000;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    transition: 0.5s ease;
    text-transform: uppercase;
    padding: 12px 35px;
}

.btnwhite:hover {
    background-color: #000;
    color: #fff;
    transition: all 0.5s;
}

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

.ContentChoose h3 {
    font-size: 45px;
}


.New3 {
    width: 761px;
    height: 763px;
}

.New1 {
    width: 761px;
    height: 466px;
}

.New2 {
    width: 613px;
    height: 785px;
}

.New4 {
    width: 613px;
    height: 785px;
}

button.btn-liquid.btn-Liquid {
    width: unset;
}

.RequestContent h3 {
    display: flex;
    align-items: center;
}

.RequestContent h3 img {
    margin-left: 100px;
}

h3.etclass {
    font-size: 71px;
}

.chooseContent.RequestContent a {
    color: #b5c1e9;
}

.chooseContent.RequestContent img {
    margin-left: 0px;
    margin: 0px 40px;
}

.chooseContent.RequestContent {
    margin-bottom: 250px;
}

.formContent h6 {
    font-size: 18px;
    color: #767676;
    font-weight: 700;
    margin: 10px 0px;
    text-transform: uppercase;
}

.formContent p {
    font-size: 16px;
    color: #767676;
    text-align: revert;
    width: 83%;
    margin: auto;
    line-height: 19px;
}

.formContent {
    text-align: center;
}

.formContent img {
    height: 90px;
    object-fit: cover;
    margin-bottom: 25px;
}

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

.FormNew .btn-liquid {
    margin-top: 18px;
}

.srvcBox.support-page {
    padding: 150px 0px;
}

.srvcBox.support-page .serviceContent {
    padding: 27px 15px;
}

.srvcBox.support-page .serviceContent p {
    margin-top: 0px;
}

.chooseContent h3 {
    text-transform: uppercase;
}

.fmonitor1 {
    width: 600px;
    height: 500px;
    margin-top: -70px;
}

.fmonitor2 {
    width: 650px;
    height: 600px;
    margin-top: -70px;
}

.fmonitor3 {
    width: 979px;
    height: 530px;
}



.pricingTable {
    text-align: center;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.pricingTable:before {
    content: '';
    background-color: #1c3340;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 20px;
    right: 0;
    z-index: -1;
}

.pricingTable .pricingTable-header {
    color: #fff;
    background: #F55C78;
    width: 80%;
    padding: 30px 10px 40px;
    margin: 0 auto 30px;
    border-radius: 20px 20px 0 0;
    border-bottom: 7px solid #052130;
}

.pricingTable .title {
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.pricingTable .title:before {
    display: none;
}

.pricingTable .price-value {
    color: #F55C78;
    background: #fff;
    font-size: 45px;
    font-weight: 600;
    width: 100px;
    height: 100px;
    line-height: 103px;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    display: inline-block;
}

.pricingTable .pricing-content li {
    color: #fff;
    font-size: 17px;
    line-height: 43px;
    text-transform: uppercase;
    padding: 0 10px;
    border-bottom: 1px solid #fff;
}

.pricingTable .pricing-content li:last-child {
    border-bottom: none;
}

.pricingTable .pricingTable-signup a {
    color: #fff;
    background: #F55C78;
    font-size: 23px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 18px 5px;
    border-radius: 15px;
    display: inline-block;
    transition: all 0.3s;
}

.pricingTable .pricingTable-signup a:hover {
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 5px #1c3340;
}

.pricingTable.blue .pricingTable-header,
.pricingTable.blue .pricingTable-signup a {
    background: #239EFE;
}

.pricingTable.blue .price-value {
    color: #239EFE;
}

.pricingTable.purple .pricingTable-header,
.pricingTable.purple .pricingTable-signup a {
    background: #744EA5;
}

.pricingTable.purple .price-value {
    color: #744EA5;
}


.liquid-button text {
    fill: white !important;
}