.panel {
    min-height: 80vh;
    display: flex;
}


/* colours */

.color-white {
    background-color: #fff;
}

.color-green {
    background-color: #33BAA8;
}

.color-blue {
    background-color: #3F51B5;
}

.color-grey {
    background-color: #888888;
}

.color-blue1 {
    background-color: #2E7B8B;
}

.color-orange {
    background-color: #FFA500;
}

.color-litegrey {
    background-color: #E8E8E8;
}

.color-yellow {
    background-color: #FDB900;
}

.color-blue2 {
    background-color: #2D346A;
}

.color-blue3 {
    background-color: #5B4DE6;
}

.color-litegrey1 {
    background-color: #F7F7F9;
}

html,
body {
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Rubik', sans-serif; */
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    transition: background-color 1s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 900;
    color: #000;
}

a {
    display: inline-block;
    border: none;
    text-decoration: none !important;
    font-weight: 400;
    outline: none;
    color: #000000;
    transition: all .3s ease-in-out;
}

a:focus {
    text-decoration: none !important;
    outline: none;
}

a:hover,
a:active {
    color: #000000;
    text-decoration: none;
}

figure {
    margin: 0
}

img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto
}

i {
    font-style: normal
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cf:after,
.cf:before {
    content: '';
    display: block
}

.cf:after {
    clear: both
}

.button {
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 40px;
    display: inline-block;
    border: 1px solid #0060A9;
    color: #0060A9;
    border-radius: 0px;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.pad-tb-100 {
    padding: 100px 0px;
}

.pad-tb-150 {
    padding: 150px 0px;
}

.font-90 {
    font-size: 90px;
}

.font-80 {
    font-size: 80px;
}

.font-70 {
    font-size: 70px;
}

.txt-white {
    color: #fff;
}

.txt-black {
    color: #000;
}

.weight-Medium {
    font-weight: 500;
}

.weight-Semi-bold {
    font-weight: 600;
}

.weight-bold {
    font-weight: 700;
}

.weight-black {
    font-weight: 900;
}

.playstore-btn img {
    transform: translateY(-50%);
    position: absolute;
    left: 10px;
    top: 50%;
}

.playstore-btn {
    position: relative;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
    color: #000;
    background-color: #fff;
    box-shadow: 0 7px 18px 0 #6b7c9326;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 15px 8px 52px;
}

.playstore-btn:hover {
    background-color: #000;
    transform: translateY(-3px);
    color: #fff;
}

.playstore-btn span {
    display: block;
    margin-top: 0px;
    color: #000;
    transition: translateY(-3px);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

.playstore-btn:hover span {
    color: #fff;
}

.text-button {
    border: none;
    width: 220px;
    height: 54px;
    line-height: 54px;
    background-color: #22252a;
    font-size: 16px;
    font-weight: 700;
    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;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 60px;
}

.text-button:hover {
    color: #fff;
    transform: translateY(-3px);
}


/* Field Effect Start */

.group {
    position: relative;
    margin: 0;
}

.group textarea {
    resize: none;
}

.group input,
.group textarea {
    background: none;
    color: #333;
    font-size: 14px;
    padding: 9px 9px 9px 5px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #E2E2E2;
    font-weight: 500;
}

.group input:focus,
.group textarea:focus {
    outline: none;
}

.group input:focus~label,
.group input:valid~label,
.group textarea:focus~label,
.group textarea:valid~label {
    top: -14px;
    font-size: 0.9rem !important;
    color: #9B9B9B !important;
}

.group input:focus~.bar:before,
.group textarea:focus~.bar:before {
    width: 100%;
}

.group input[type="password"] {
    letter-spacing: 0.3em;
}

.group label {
    color: #9B9B9B;
    font-size: 14px !important;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 12px;
    -webkit-transition: 300ms ease all;
    transition: 300ms ease all;
    margin: 0;
}

.group .bar {
    position: relative;
    display: block;
    width: 100%;
}

.group .bar:before {
    content: '';
    height: 1px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #005CB9;
    -webkit-transition: 300ms ease all;
    transition: 300ms ease all;
    left: 0%;
}

.group .error {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #ff0000;
    width: 100%;
    padding-top: 5px;
}

.btn-width {
    width: 350px;
}

.selectMain label {
    top: -14px;
    font-size: 0.9rem !important;
    color: #CCC !important;
}

.group .floating-select {
    background: none;
    color: #100F0E;
    font-size: 14px;
    padding: 8px 8px 8px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #CCC;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/drop_down.svg) no-repeat right .35rem center/22px 22px;
}

.group .floating-select:focus {
    outline: none;
    border-bottom: 2px solid #5264AE;
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
    top: -14px;
    font-size: 0.9rem !important;
    color: #CCC !important;
}


/* active state */

.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fullscreen-enable [data-toggle=fullscreen] .bi-fullscreen::before {
    content: "\f3de";
}


/* highlighter */

.highlight {
    position: absolute;
    height: 97%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* animation */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.checkboxMain {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 0px 0px 0;
}


/* Hide the browser's default checkbox */

.checkboxMain input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #E7E7E7;
}


/* On mouse-over, add a grey background color */

.checkboxMain:hover input~.checkmark {
    border: 1px solid #E7E7E7;
}


/* When the checkbox is checked, add a blue background */

.checkboxMain input:checked~.checkmark {
    background-color: #0060A9;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.checkboxMain input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.checkboxMain .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Field Effect End */


/* -- Header Start -- */

.header-main {
    /*padding-top: 20px;*/
    position: absolute;
    left: 0;
    right: 0;
    z-index: 11;
    /* text-align: center; */
    transition: 0.4s linear;
}

.sticky {
    position: fixed;
    top: -1px;
    left: 0;
    z-index: 99;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-animation: stickySlideDown 0.6s ease;
    animation: stickySlideDown 0.6s ease;
    width: 100%;
}

@keyframes stickySlideDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.navbar {
    padding: 10px 0;
}

.header-main .navbar-collapse {
    justify-content: flex-end;
}

.header-main .navbar-dark .navbar-nav .nav-link {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
    position: relative;
    color: #000;
    font-weight: 700;
}

.header-main .navbar-dark .navbar-nav a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #000;
    height: 3px;
    transition: all .5s;
}

.header-main .navbar-dark .navbar-nav a:hover::after {
    width: 90%;
}


.navbar-toggler.close_btn {
    top: 5px;
}

.icon-wrap {
    display: flex;
}

.navbar-dark .navbar-toggler {
    color: rgb(54 83 128);
    border-color: transparent;
    background: transparent;
    outline: none;
    box-shadow: none;
    padding: 0;
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
}

.close_btn {
    top: 18px;
}

.logo {
    height: 62px;
    padding: 0;
    margin-right: 0;
}


/* -- Header End -- */

.banner-wrapper {
    position: relative;
}

.project-wrapper {
    position: relative;
}

.feedback-wrapper {
    margin-top: 100px;
    position: relative;
}

.feedback-wrapper p {
    font-size: 34px;
    font-weight: 700;
}

.feedback-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.feedback-author .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: #fff;
}

.feedback-author .info .name {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
}

.feedback-author .info .position {
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    margin-top: 2px;
}

.feedback-author .i-wr {
    margin-left: 1.04603%;
    margin-right: 1.88285%;
    width: 6.27615%;
}

.feedback-author .i-wr img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.services-wrapper {
    position: relative;
}

.services-wrapper .service-hldr {
    margin-bottom: 100px;
    display: flex;
}

.services-wrapper .service-hldr .i-wr {
    margin-top: 23px;
    width: 13.39713%;
    margin-right: 7.17703%;
}

.services-wrapper .service-hldr .service {
    max-width: 446px;
}

.services-wrapper .service-hldr .service h6 {
    font-size: 22px;
    line-height: 1.63;
    font-weight: 700;
}

.services-wrapper .service-hldr .service .service-text {
    margin-top: 8px;
}

.homeContact-wrapper {
    position: relative;
    background: url(../img/contact-bg.png) bottom right no-repeat;
}

.homeContact-wrapper .contactForm {
    width: 80%;
    margin: 0 auto;
}

.homeContact-wrapper .addresses {
    width: 70%;
    margin: 0 auto;
}

.homeContact-wrapper .addresses .addressHldr {
    position: relative;
}

.homeContact-wrapper .addresses .addressHldr h3 {
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.homeContact-wrapper .addresses .addressHldr p {
    margin-bottom: 5px;
}


/* -- Services Start -- */

.tabSecation-wrapper .nav-tabs {
    display: none;
}

.timeline-wrwpper {
    position: relative;
}

.timeline-wrwpper .timeline-hldr {
    margin-top: 15px;
    display: flex;
    width: 100%;
}

.timeline-wrwpper .timeline-hldr .i-wr {
    width: 6%;
    margin-right: 15px;
}

.timeline-wrwpper .timeline-hldr .text-col {
    width: 90%;
}

.text-col .header {
    font-size: 18px;
    font-weight: 700;
}

.text-col p {
    margin-bottom: 4px;
}

.offers-product-wrapper {
    position: relative;
}

.offers-product-part {
    position: relative;
    margin-top: 50px;
}

.offers-product-part .product-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.offers-product-part .product-fill .i-wr {
    position: relative;
    width: 100%;
    height: 68px;
    width: 68px;
    margin: 0 auto 20px;
}

.offers-product-part .product-fill h3 {
    font-size: 16px;
    text-transform: uppercase;
}

.tabSecation-wrapper .card-header {
    border: 1px solid #e8e8e8;
    border-radius: 0px;
}

.tabSecation-wrapper .card-header h5 a {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

@media(min-width:768px) {
    .tabSecation-wrapper .nav-tabs {
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: none;
    }

    .tabSecation-wrapper .nav-tabs .nav-link {
        color: #898989 !important;
        font-weight: 600;
        border: none;
        padding: 5px 15px;
        margin: 0 15px;
    }

    .tabSecation-wrapper .nav-tabs .nav-link:focus,
    .tabSecation-wrapper .nav-tabs .nav-link:hover {
        border: none;
    }

    .tabSecation-wrapper .nav-tabs .nav-link.active {
        color: #000 !important;
        background: none;
        border: none;
        border-bottom: 2px solid #ED6323;
    }

    .tabSecation-wrapper .nav-tabs .nav-item {
        margin-bottom: -1px;
        display: inline-block;
        border-right: 1px solid #e3e3e3;
    }

    .tabSecation-wrapper .card {
        border: none;
        background: none;
    }

    .tabSecation-wrapper .card .card-header {
        display: none;
    }

    .tabSecation-wrapper .card .collapse {
        display: block;
    }

    .tabSecation-wrapper .card .card-body {
        padding: 50px 0px;
    }

    .tabSecation-wrapper .nav-tabs .nav-item:last-child {
        border-right: none;
    }
}

@media(max-width:767px) {
    .tab-content>.tab-pane {
        display: block !important;
        opacity: 1;
        margin-bottom: 10px;
    }

    .tabSecation-wrapper .card-body {
        border: 1px solid #e8e8e8;
    }
}

.technologyIcon-wrapper {
    position: relative;
}

.technologyIcon-wrapper .technology-icon-hldr {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.technologyIcon-wrapper .technology-icon-hldr .i-wr {
    position: relative;
    width: 100%;
    height: 64px;
    width: 64px;
    margin: 0 auto 15px;
}

.technologyIcon-wrapper .technology-icon-hldr p {
    font-size: 12px;
}

.workBox-wrapper {
    position: relative;
}

.workBox-wrapper .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    width: 96%;
    margin: 0 auto 2%;
    height: 100%;
}

.workBox-wrapper .icon-box .icon {
    margin-bottom: 15px;
}

.workBox-wrapper .icon-box .icon i {
    font-size: 60px;
    color: #FF6600;
}

.workBox-wrapper .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.workBox-wrapper .icon-box .description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.whyus-wrapper {
    position: relative;
}

.whyus-wrapper .item {
    padding: 15px 0px;
}

.service-block {
    background: #fff;
    margin-bottom: 30px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: relative;
    width: 94%;
    min-height: 274px;
    margin: 0px auto;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.service-block .service-icon {
    font-size: 60px;
    line-height: 1;
    color: #002e5b;
}

.service-block .service-icon img {
    width: auto;
}

.service-block .service-title-block {
    padding-left: 25px;
}

.service-block .service-title a {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-block .service-title a:hover {
    color: #0060a9;
}

.service-excerpt {
    position: relative;
    margin-top: 25px;
    color: #757C8C;
    padding-left: 20px;
    font-size: 14px;
    min-height: 116px;
}

.service-excerpt::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: -1px;
    background: #f0f4f8;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.service-excerpt::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0px;
    top: 0;
    left: -1px;
    background: #0060a9;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.service-block:hover {
    -webkit-transform: translate(0, -10px);
    -khtml-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    -o-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.service-block:hover .service-excerpt::after {
    height: 100%;
}


/* -- Services End -- */


/* -- Company End -- */

.about-wrapper {
    position: relative;
}

.about-wrapper .icon-box {
    padding: 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    height: 100%;
}

.about-wrapper .icon-box .icon {
    margin-bottom: 15px;
}

.about-wrapper .icon-box .icon i {
    font-size: 60px;
    color: #FF6600;
}

.about-wrapper .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.about-wrapper .icon-box .description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100vh;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/* -- Company End -- */


/* -- Product Inner Start -- */

.procuct-inner-wrapper {
    position: relative;
}

.challenge-step {
    margin: 0 auto;
    width: 60%;
    position: relative;
}

.challenge-step.step-1 {
    margin-top: 210px;
}

.step-number {
    position: absolute;
    font-size: 200px;
    line-height: 1;
    font-weight: 800;
    opacity: .05;
    text-align: center;
    width: 100%;
    padding-left: 4px;
    top: -141px;
}

.challenge-step .text-32-800 {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
}

.technologies-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab-column {
    width: 35.36%;
    max-width: 35.36%;
}

.t-14-400 {
    text-transform: uppercase;
}

.t-14-400.grey {
    margin-bottom: 8px;
    padding-bottom: 0;
    color: #636569;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}

.technology-description {
    max-width: none;
}

.t-16-600 {
    position: static;
    display: block;
    width: auto;
    min-width: auto;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.t-16-600.dark {
    margin-top: 0;
    padding-top: 0;
    color: #22252a;
    line-height: 24px;
}

.t-16-600 .external-link {
    color: #009e98;
    font-weight: 500;
    text-decoration: underline;
}

.text-span {
    color: #009e98;
    text-decoration: underline;
}


/* -- Product Inner End -- */

.footerContact {
    position: relative;
    background: url(../img/footer-contact-img.png) top center no-repeat #F7F7F9;
    background-size: cover;
}

footer {
    padding-top: 40px;
    background-color: #22252a;
    width: 100%;
}

.container-fluid-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 65.27778%;
    margin: auto;
}

footer .footer-content {
    padding-bottom: 36px;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    justify-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    grid-auto-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 16px;
    grid-template-columns: 25% 16% 16% 18% 21%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

footer .logo-wr {
    width: 200px;
    margin-bottom: 8px;
}

footer .footer-heading {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #636569;
    margin-bottom: 13px;
}

footer .footer-link {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

footer .icons-column {
    display: grid;
    grid-template-rows: repeat(2, 40px);
    grid-template-columns: repeat(4, 40px);
    grid-gap: 15px;
    margin-left: auto;
}

footer .footer-icon-link {
    width: 40px;
    height: 40px;
    display: block;
    background-color: #2F3338;
    border-radius: 40px;
    line-height: 44px;
    text-align: center;
}

footer .footer-icon-link i {
    color: #fff;
    font-size: 20px;
}

footer .divider {
    width: 100%;
    background-color: hsla(0, 0%, 100%, .1);
    height: 1px;
}

footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 12px;
    background-color: #1C1F23;
    color: #fff;
}

.check-cross-img {
    height: 75px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.color-red {
    color: red;
}