/* :: All Transition */
* {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
}

/* :: Body */
body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #cacbce;
    background: #000000;
    letter-spacing: 0.3px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
::-moz-selection {
    background-color: #1997d4;
    color: #FFF;
    text-shadow: none;
}
::selection {
    background-color: #1997d4;
    color: #FFF;
    text-shadow: none;
}
a,
a:hover,
a:focus,
button:focus {
    text-decoration: none;
    color: #FFF;
}

/* :: Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #ffffff;
}
p {
    color: #cacbce;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Titillium Web', sans-serif;
    line-height: 25px;
}

/* :: Display Table */
.display-table {
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
    min-height: 100%;
    height: 100vh;
}

/* :: My Classes */
.py-50{
    padding: 50px 0;
}
.py-50-25{
    padding: 50px 0 25px 0;
}
.padding-0{
    padding: 0;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 85%);
}
.btn-1{
    text-transform: capitalize;
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    min-width: 180px;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    letter-spacing: 1px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-color: #1997d4;
    display: inline-block;
    cursor: pointer;
}
.btn-1:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #cacbce;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.btn-1:hover:after{
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
}
.btn-2{
    color: #1997d4;
    background-color: #FFF;
}
.btn-2:after{
    background-color: #1997d4;
}
.btn-3{
    color: #FFF;
    background-color: #cacbce;
}
.btn-3:after{
    background-color: #1997d4;
}
.btn-4{
    color: #1997d4;
    background-color: #FFF;
}
.btn-4:after{
    background-color: #cacbce;
}
.sec-title{
    margin-bottom: 50px;
}
.sec-title h2{
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}
.sec-title h3{
    color: #ffffff;
    /*text-transform: uppercase;*/
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: .3px;
    margin-bottom: 15px;
}
.sec-title p{
    text-transform: capitalize;
    color: #cacbce;
    line-height: 26px;
    font-size: 15px;
    margin-bottom: 0;
    font-family: 'Titillium Web', sans-serif;
    width: 80%;
    margin: 0 auto
}

/* :: Loading */
.loading {
    position: fixed;
    background-color: #FFF;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
.loading .loading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
}
.lds-ring div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    position: absolute;
    width: 44px;
    height: 44px;
    margin: 8px;
    border: 2px solid #1997d4;
    border-radius: 50%;
    -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1997d4 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    -webkit-animation-delay: -0.45s;
            animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    -webkit-animation-delay: -0.15s;
            animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes lds-ring {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}



/* :: Navbar */
.nav-bar.active{
    background-color: #121212;
    -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
            box-shadow: 0 3px 4px rgba(0,0,0,.07);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.nav-bar .logo .logo-nav{
    position: relative;
    display: block;
    padding: 4px 0;
}
.nav-bar .logo .logo-nav img{
    width: 62px;
}
.nav-bar .logo .logo-nav span.logo-subtitle{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.30px;
    margin-top: 7px;
    font-weight: 700;
}
.nav-bar .nav-bar-link > ul > li{
    display: inline-block;
    position: relative;
}
.nav-bar .nav-bar-link ul li a{
    color: #cacbce;
    font-size: 14px;
    font-weight: 700;
    padding: 24px 0;
    margin: 0 20px 0 0px;
    position: relative;
    display: block;
    text-transform: uppercase;
}
.nav-bar .nav-bar-link ul li a:before{
    content: '';
    background-color: #1997d4;
    position: absolute;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: 0px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav-bar .nav-bar-link ul li a:hover:before,
.nav-bar .nav-bar-link ul li .color-active:before,
.nav-bar .nav-bar-link ul li.active a:before{
    width: 100%;
}
.nav-bar.active .nav-bar-link ul li a{
    color: #cacbce;
}
.nav-bar.active .nav-bar-link > ul ul li a{
    color: #9B9B9B;
}
.nav-bar .nav-bar-link ul li a:hover,
.nav-bar .nav-bar-link ul li a.color-active,
.nav-bar.active .nav-bar-link > ul ul li:hover a,
.nav-bar .nav-bar-link ul li.active a{
    color: #1997d4;
}
.nav-bar .nav-bar-link > ul ul{
    position: absolute;
    z-index: 2;
    background-color: #000000;
    padding: 28px 0;
    top: 100%;
    left: 0;
    min-width: 240px;
    -webkit-box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
            box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}
.nav-bar .nav-bar-link > ul li:hover > ul{
    -webkit-transform: translateY(00px);
        -ms-transform: translateY(00px);
            transform: translateY(00px);
    opacity: 1;
    visibility: visible;
}
.nav-bar .nav-bar-link > ul ul li{
    position: relative;
    padding: 0 30px 0 40px;
}
.nav-bar .nav-bar-link > ul ul li a{
    color: #9B9B9B;
    font-size: 14px;
    line-height: 1;
    padding: 8px 0;
    position: relative;
    font-weight: normal;
    text-transform: capitalize;
    display: inline-block;
}
.nav-bar .nav-bar-link > ul ul li:hover a{
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
}
.nav-bar .nav-bar-link > ul ul ul{
    left: 100%;
    top: 0;
}
.nav-bar .nav-bar-link > ul ul ul li a{
    -webkit-transform: translateX(0px) !important;
        -ms-transform: translateX(0px) !important;
            transform: translateX(0px) !important;
    color: #9B9B9B !important;
}
.nav-bar .nav-bar-link > ul ul ul li:hover a{
    -webkit-transform: translateX(10px) !important;
        -ms-transform: translateX(10px) !important;
            transform: translateX(10px) !important;
    color: #1997d4 !important;
}
.nav-bar .nav-bar-link .level-1:last-of-type li a{
    padding-right: 0;
}
.nav-bar .nav-bar-link .level-1:last-of-type li:last-of-type a{
    margin: 0;
}
.nav-bar .icon li{
    display: inline-block;
}
.nav-bar .icon li .icon-item{
    color: #cacbce;
    padding: 24px 0;
    font-size: 16px;
    margin: 0 20px 0 0px;
    position: relative;
    display: block;
}
.nav-bar .icon li:last-of-type .icon-item{
    margin-right: 0;
}
.nav-bar .icon li:hover .icon-item i{
    color: #1997d4;
}

/* :: Search Box */
.search-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(27 27 29 / 90%);
    z-index: 1040;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    display: none;
}
.search-box form{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 85%;
}
.search-box form input{
    background-color: transparent;
    width: 100%;
    padding: 10px 0;
    font-size: 35px;
    color: #FFF;
    border: 0;
    border-bottom: 1px solid #FFF;
}
.search-box form input:focus{
    border-bottom: 1px solid #1997d4;
}
.search-box form button{
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 65px;
    background-color: transparent;
    text-align: center;
    font-size: 25px;
    color: #1997d4;
    border: 0;
    outline: none;
}
.search-box .close-search{
    position: absolute;
    right: 50px;
    top: 50px;
    font-size: 22px;
    color: #FFF;
    cursor: pointer;
}
.search-box .close-search:hover{
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
    color: #1997d4;
}


/* :: Header */

.header .header-owl .sec-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.header .header-img{
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: cover;
}
.banner{
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.banner .handline{
    text-transform: uppercase;
    
    line-height: 1.2;
    font-size: 40px;
    /*margin-top: 30px;*/
    color: #FFF;
    font-family: 'Titillium Web', sans-serif;
}
.banner .handline>span{
    color: #1997d4;
    font-weight: 700;
}
/*.banner .handline:before, .banner .handline:after {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    content: "";
}*/
.banner .about-site{
    margin-bottom: 30px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 400;
    color: #FFF;
}
.banner .buttons a:first-of-type{
    margin-right: 20px;
}
.header .table-cell{height: 400px;}
/* //////////////////*/
@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl{
        /*max-width: 1270px;*/
    }
}

/* :: Platform */
.platform{
    /*padding-bottom: 100px;*/
    background-image: url(../images/about/platform_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.platform .text-box .sec-title h3{
    margin-bottom: 25px;
}
.text-box .sec-title h3 {
    display: inline-block;
    position: relative;
}
.text-box .sec-title h3:after {
    position: relative;
    display: block;
    content: "";
    height: 3px;
    width: 30%;
    background: #1997d4;
    margin: 10px auto 0;
}
.text-box .sec-title h3:before {
    position: absolute;
    content: '';
    text-align: center;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
    width: 70%;
    height: 1px;
    background: #5b5e64;
}
.platform .text-box .sec-title{/*margin-bottom: 20px;*/}
.platform .card{background: #18191b;}
.platform .card .card-body{background: #000000;}
.platform .card .card-header h6{display: flex;color: #cacbce;}
.platform .accordion .card-header .toggle-icon .icn{font-size: 12px;color: #cacbce;}
.platform .card .card-header:hover h6, .platform .accordion .card-header:not(.collapsed) h6{color: #FFF;}
.platform .accordion .card-header:not(.collapsed) .toggle-icon .icn:before{content: "\f077";}
/* :: Services */
.services .text-box .sec-title h3 {
    margin-bottom: 25px;
}
.services .text-box .sec-title {
    /*margin-bottom: 20px;*/
}
.service-box > div {
    /*padding: 30px 40px 20px;*/
    padding: 0px 0px 40px 0px;
    margin-bottom: 60px;
    /*background: #18191b;*/
    height: calc(100% - 30px);
}
.service-box:last-child > div {
    margin-bottom: 0;
}
.service-box img {
    /*height: 37px;
    float: left;*/
}
.service-img1 {
    position: relative;
    display: block;
}
.service-img1:before {
    position: absolute;
    content: "";
    border: 1px solid #fff;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    left: 20px;
    top: 20px;
    display: block;
    opacity: 0.5;
}
.service-box .service-box-content {
    /*padding-left: 68px;*/
}

.service-box h3 {
    color: #fff;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 21px;
    text-transform: uppercase;
}
.service-box .list{position: relative;}
.service-box .list li{
    position: relative;
    padding-left: 35px;
    padding-bottom: 10px;
}
.service-box .list li:before{
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f058";
    left: 0;
    top: 0px;
    color: #1997d4;
    font-size: 24px;
}
/* :: work-steps */
.work-step{counter-reset: work-steps-counter;}
.work-step .work-box:before {
    content: counter(work-steps-counter, decimal-leading-zero) ".";
    counter-increment: work-steps-counter;
    opacity: 0.5;
    position: absolute;
    right: 15px;
    padding: 20px;
    font-size: 18px;
}
.work-steps .text-box .sec-title h3 {
    margin-bottom: 25px;
}
.work-steps .text-box .sec-title {
    /*margin-bottom: 20px;*/
}
.work-box > div {
    padding: 30px 30px 20px;
    margin-bottom: 30px;
    background: #18191b;
    border-radius: 25px;
    text-align: center;
    height: calc(100% - 30px);
}
.work-box img {
    height: 57px;
    margin-bottom: 20px;
}
.work-box .work-box-content {
    /*padding-left: 68px;*/
}

.work-box h3 {
    color: #fff;
    margin: 0 0 15px;
    font-weight: 400;
    font-size: 21px;
}
.work-box p{/*font-size: 14px;*/}
/* :: Why we */
.why-wrapper{overflow: hidden;}
.why-wrapper > :last-child {
    margin-bottom: 0;
}

.why-wrapper .why-box{
    margin-bottom: 40px;
    display: -ms-flexbox;
    display: flex;
}
.why-wrapper .why-box:nth-child(even) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.why-box .posts {
    position: relative;
    width: 45%;
    padding: 25px;
    background: #18191b;
    border-radius: 10px;
}
.why-box .posts:after{
    content: '';
    display: block;
    position: absolute;
    top: 40px;
    right: -7px;
    width: 15px;
    height: 15px;
    background-color: #18191b;
    transform: rotate(45deg);
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 20%);
    z-index: 1;
}
.why-box:nth-child(even) .posts:after{
    left: -7px;
    right: auto;
}
.why-box .posts h3{font-size: 18px; font-weight: 700;margin-bottom: 10px;}

.why-box .icon{
    position: relative;
    width: 12px;
    height: 12px;
    line-height: 12px;
    margin: 15px 25px 0 49px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    background-size: cover;
    background-position: 50% 50%;
    transition: .3s ease;
    background: #1997d4;
}
.why-box .icon:before {
    position: absolute;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50px;
    left: 3px;
    top: 3px;
}
.why-box .icon img {
    height: 24px;display: none;
}
.why-box .icon span.v-line:before {
    position: absolute;
    display: block;
    content: '';
    width: 1px;
    height: 3000px;
    border-right: 1px dotted #5b5e64;
    bottom: 0;
    right: 5px;
}
.why-box:first-child .image,
.why-box:first-child .icon {
    margin-top: 0;
}
.why-box:nth-child(even) .icon{margin: 15px 49px 0 25px;}
.why-box .icon svg {
    position: absolute;
    bottom: 100%;
    left: -33px;
    height: 3485px;
    z-index: -1;
}
svg:not(:root) {
    overflow: hidden;
}
.why-box .icon svg line {
    position: absolute;
    bottom: 0;
    right: 0;
}
.why-box .image{
    position: relative;
    display: block;
    height: 200px;
    width: 200px;
}
.why-box .image img{
    height: 160px;
    position: absolute;
    left: 50%;
    right: 50%;
    -webkit-transform: translate(-50%, 40%);
       -moz-transform: translate(-50%, 40%);
        -ms-transform: translate(-50%, 40%);
         -o-transform: translate(-50%, 40%);
            transform: translate(-50%, 40%);
}
.why-box .curve-bg{width:200px;height: 200px;}
.why-box .curve-bg .curve-bg-color{fill:#18191b;}
.why-box .sec-title h2{position: relative;}
.why-box .sec-title h2 .img-sm{
    height: 40px;
    position: absolute;
    left: 0;
    top: -15px;
}
/* :: Solutions */
.solutions {
    height: 262px;
    position: relative;
    margin: 45px 0 100px;
    background: #1997d4;
}
.solutions .container {
    background: #18191b;
    /*width: 1270px;*/
    width: 1140px;
    height: 370px;
    margin-top: -55px;
    position: absolute;
    left: 0;
    right: 0;
}
.solutions .container .text-box{padding: 50px 0;}
.solutions .solutions-box{position: relative;}
.solutions .solutions-box > div img{
    display: block;
    height: 60px;
    margin: 0 auto;
}
.solutions .solutions-box-content{
    text-align: center;
    margin-top: 20px;
}
.solutions .solutions-box-content h3{font-size: 16px;}
.solutions .solutions-box:after {
    content: '';
    position: absolute;
    font-weight: 100;
    top: 0;
    right: -6%;
    height: 143px;
    -webkit-transform: translateX(-50%) skew(-21deg);
    transform: translateX(-50%) skew(-21deg);
    width: 1px;
    background: #444;
}
.solutions .solutions-box:last-child:after{display: none;}
/* ///////////////////////////////////////////////////// */
/*#platform,#services,#whysystem,.to_fade_from_left, .to_fade_from_right, .work-step{
    visibility: hidden;
}
.fade_up {
  visibility: visible !important;
  -ms-animation: fadeUp 2s;
  animation: fadeUp 2s; 
}
.fade_from_left {
  visibility: visible !important;
  -ms-animation: fadeFromLeft 1s;
  animation: fadeFromLeft 1s; 
}
.fade_from_right {
  visibility: visible !important;
  -ms-animation: fadeFromRight 1s;
  animation: fadeFromRight 1s; 
}
@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateY(100px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeFromLeft {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateX(-100%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeFromRight {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateX(100%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0);
  }
}*/
/* ///////////////////////////////////////////////////// */
/* :: About */
.about-img1 {
    padding: 20px;
}
.about-img1>img {
    box-shadow: 15px 15px #18191b;
}
/* :: Footer */
.footer{
    background-color: #000000;
    padding-top: 40px;
    border-top: 1px solid #444;
}
.footer .logo,
.footer .links,
.footer .newsletter{
    margin-bottom: 30px;
}
.footer .newsletter address{
    font-size: 16px;
}
.footer .logo img{
    height: 60px;
}
.footer .logo p{
    margin: 30px 0 20px 0;
    opacity: 0.5;
}
.footer .logo ul li{
    display: inline-block;
}
.footer .logo ul li a{
    width: 35px;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #18191b;
    color: #FFF;
    font-size: 13px;
    margin-right: 5px;
    border-radius: 50%;
}
.footer .logo ul li:hover a{
    background-color: #1997d4;
    color: #FFF;
}
.footer-title h4{
    color: #1997d4;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer .links li a{
    display: inline-block;
    position: relative;
    color: #cacbce;
    font-size: 14px;
    line-height: 32px;
}
.footer .links li:hover a{
    color: #ffffff;
}
.footer .newsletter{
    /*background-color: #09091F;
    padding: 30px;
    border-radius: 3px;*/
}
.footer .newsletter h5{
    color: #1997d4;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer .newsletter p{
    color: #cacbce;
    margin-bottom: 26px;
    font-size: 15px;
}
.footer .newsletter form{
    position: relative
}
.footer .newsletter form input{
    width: 100%;
    color: #9B9B9B;
    background-color: transparent;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0 15px;
    line-height: 44px;
    border-radius: 3px;
    letter-spacing: 0.25px;
    position: relative;
    border: 1px solid rgb(204 204 204 / 0.1);
}
.footer .newsletter form input:focus{
    border-color: #1997d4;
}
.footer .newsletter form a{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 15px;
    background-color: #1997d4;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
}
.copyright{
    margin-top: 0px;
    padding: 20px 0;
    background-color: #000000;
    overflow: hidden
}
.copyright p{
    margin: 0;
    color: #F4F4F4;
    float: left;
}
.copyright p a{
    color: #1997d4;
}
.copyright ul{
    float: right;
}
.copyright ul li{
    display: inline-block;
    margin-left: 10px;
}
.copyright ul li:hover a{
    color: #1997d4;
}

/* :: Scroll Up */
.scroll-up {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 35px;
    -webkit-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.scroll-up.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.scroll-up a {
    background-color: #1997d4;
    font-size: 16px;
    color: #FFF;
    line-height: 42px;
    width: 44px;
    height: 44px;
    display: inline-block;
    text-align: center;
    border: 1px solid #1997d4;
    border-radius: 3px;
    outline: none;
}
.scroll-up:hover a{
    background-color: #cacbce;
    border: 1px solid #cacbce;
}


/* /////////////////////////////////////*/
/*.copyright .modalTab .item{position: relative;}
.copyright .modalTab .item>h3{
    position: absolute;
    top: 50%;
    left: 50%;
    background: none;
    transform-origin: 0 0;
    transform: rotate( -90deg ) translateX(-50%) translateY(-50%);
    white-space: nowrap;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.copyright .modalTab {
    margin: 0px auto;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
    display: flex;
}

.copyright .modalTab .item {
    width: 10%;
    background-color: #121212;
    border: 1px solid #000000;
    height: 100%;
    cursor: pointer
}

.copyright .modalTab .active {
    background-color: #1997d4;
    color: #ecf0f1
}

.copyright .modalTab .info {
    width: 0;
    background-color: #000000;
    display: none;
    text-align: left;
    padding: 20px;
}
.copyright .modal-content{background-color: #000;}
.copyright .modal-body{padding: 0;}
.copyright .modal-header{border-bottom-color: #121212;}*/
/* ///////////////////////////////////*/
.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen .modal-header {
    border-radius: 0;
}
.modal-fullscreen .modal-body {
    overflow-y: auto;
}
.modal-content{background-color: #000;}
.modal-body{padding: 0;}
.modal-header{border-bottom-color: #121212;}
.modal-header .close span{
        color: #fff;
    text-shadow: none;
    font-size: 30px;
    font-weight: 100;
}
.accordion.width {
  border: 1px solid rgba(0, 0, 0, 0.125);
  display: flex;
/*  height: 100% !important;
  width: 100% !important;*/
}
.btn-close{position: relative;}
.btn-close>span{
position: absolute;
    top: -10px;
    left: 0;
    font-size: 44px;
    color: #FFF;
    line-height: 1;
}
.accordion.width .card {
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 1;
  min-width: min-content;
}

.accordion.width .card .card-header {
    cursor: pointer;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-align: center;
    background: #121212;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .75rem 8px;
}

.accordion.width .card .card-header:not(.collapsed) {
  pointer-events: none;
  background-color: #1997d4;
}

.accordion.width .card{background-color: #000;border: none;}
.collapsing.width {
  transition: width 0.35s ease;
  height: auto;
  width: 0;
}
#termConditionPolicy .card-body{/*width: 100% !important;*/overflow-y: auto; height: 100%;}
#termConditionPolicy .modal-fullscreen{
    padding: 15px;
}
#termConditionPolicy .modal-fullscreen .modal-content{
        border-radius: 20px;
    border: 1px solid #1997d4;
}
#termConditionPolicy .modal-title{font-size: 16px;}
#termConditionPolicy .modal-fullscreen .modal-body{border-radius: 0 0 20px 20px;}
