@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1260px;
}
.hero-btn{
    padding-top: 35px;
}
.btn-primary{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    display: table;
    background: #EA0A45;
    padding: 15px 15px;
    width: 250px;
}
.btn-primary:hover{
    background: transparent;
    color: #EA0A45;
    letter-spacing: 6px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 25px 0;
    z-index: 126;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.open{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 126;
    background: transparent;
}
header.inner-header{
    background: rgba(32, 18, 40, 0.5);
}
/* ***** Fix Header **** */
header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(32 18 40 / 60%);
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.scrolled.open,
header.show-search{
    background: transparent;
    z-index: 126;
}
header.scrolled .navbar {
    border-radius: 0;
    box-shadow: none;
}
/* ***** End Fix Header **** */


.navbar-sidebar.open{
    z-index: 125;
}
header .container-fluid {
    padding: 0 50px;
}
header .navbar .container .navbar-brand,
header .navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
header .navbar-brand {
    float: none;
    height: auto;
    padding: 0;
    position: relative;
}
header .navbar-brand img {
    max-width: 100%;
    height: 60px;
}
header .navbar-brand img.logo-img1{
    position: relative;
    z-index: 2;
}
header .navbar-brand img.logo-img2{
    position: absolute;
    left: -50px;
    top: 5px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .navbar-brand:hover img.logo-img2{
    opacity: 1;
    visibility: visible;
    left: 5px;
    z-index: 1;
}
header .row {
    align-items: center;
}
header .toggle-bix {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .toggle-bix a.search-icon{
    margin-right: 15px;
    display: none;
}
header .toggle-bix a.search-icon img{
    max-width: 24px;
}
header .toggle-bix h6 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin: 0 5px 0 0;
}
header.open .navbar-search {
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header.open .toggle-bix h6 {
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .navbar-search .form-group {
    width: 500px;
    margin: 0 auto;
    position: relative;
}

header .navbar-search {
    position: fixed;
    left: 50%;
    top: 25px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: top 0.5s ease;
}

header .navbar-search.show-search {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 124;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header .navbar-search .form-group .form-control {
    color: #989898;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    padding: 15px 80px 15px 90px;
    border-radius: 15px;
    background: #fff;
    border: none;
    box-shadow: none;
    outline: none;
}
header .navbar-search .form-group .form-control::placeholder {
    color: #989898;
}
header .navbar-search .form-group .search-icon {
    max-width: 30px;
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
header .navbar-search .form-group button {
    border: none;
    width: 60px;
    height: 54px;
    background: #ea0a45;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 15px 15px 0;
    position: absolute;
    right: 0;
    top: 0;
}
header .navbar-search .form-group button img {
    max-width: 30px;
}
.overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #201228;
    z-index: 123;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.overlay.show-search {
    opacity: 1;
    visibility: visible;
}
/* **** toggler **** */
header .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 50px;padding: 0;}
header .navbar-toggler:focus {box-shadow: none;outline: none; }
header .navbar-toggler .navbar-toggler-icon {background-image: unset;}
header .navbar-toggler:active, header .navbar-toggler:focus { outline: none; }
header .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
header .navbar-toggler-icon:after,
header .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #fff;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
header .navbar-toggler-icon:after {top: 8px;}
header.open .navbar-toggler .navbar-toggler-icon:after {transform: rotate(45deg);}
header.open .navbar-toggler .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
header.open .navbar-toggler .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */
/* **** End Header **** */

/* **** Navbar Sidebar ***** */
.navbar-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #0e0811;
    z-index: 120;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.navbar-sidebar.open {
    right: 0;
}
.navbar-sidebar.open .logo-big{
    opacity: 1;
    visibility: visible;
}
.navbar-sidebar .logo-big {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-animation: UpDown 12s infinite  alternate;
    animation: UpDown 12s infinite  alternate;
}
.navbar-sidebar .logo-big img{
    margin: 0 auto;
    max-width: 60%;
    position: relative;
    
}
@keyframes UpDown {
    0% {margin-top: -50px}
    100% {margin-top:120px}
}

.navbar-sidebar .container {
    max-width: 1107px;
}
.navbar-sidebar .navbar-links {
    position: relative;
    z-index: 121;
}
.navbar-sidebar .navbar-links ul {
    display: flex;
    flex-wrap: wrap;
}
.navbar-sidebar .navbar-links ul li {
    width: 50%;
    margin: 0 0 100px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navbar-sidebar .navbar-links ul li:nth-child(5),
.navbar-sidebar .navbar-links ul li:last-child {
    margin: 0;
}
.navbar-sidebar .navbar-links ul li a {
    color: #fff;
    text-align: right;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.32px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navbar-sidebar .navbar-links ul li a:after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 0px;
    right: auto;
    width: 0%;
    height: 5px;
    background: #fff;
    transition: 0.35s;
}
.navbar-sidebar .navbar-links ul li a.active,
.navbar-sidebar .navbar-links ul li a:hover {
    color: #f63;
    letter-spacing: 7.6px;
}
.navbar-sidebar .navbar-links ul li a.active:after,
.navbar-sidebar .navbar-links ul li a:hover:after {
    width: 80px;
}
/* **** End Navbar Sidebar ***** */

/* **** Hero **** */
.hero-wrp {
    position: relative;
}
.hero-wrp .hero-video {
    height: 100vh;
    min-height: 750px;
    position: relative;
}
.hero-wrp .hero-video:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #000000; */
    /* opacity: 100%; */
}
.hero-wrp .hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-wrp .hero-details {
/*    padding: 110px 0 0;*/
/*    padding: 80px 0 0;*/
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.hero-wrp .hero-details h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 250;
    margin: 0;
    letter-spacing: 16px;
    text-align: center;
}
.hero-wrp .hero-details ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-wrp .hero-details ul li {
    margin-right: 65px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
}
.hero-wrp .hero-details ul li:last-child {
    margin: 0;
}
.hero-wrp .hero-details h2 {
    color: #f63 !important;
    font-size: 110px;
    line-height: 120px;
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    min-height: 120px;
}
.hero-wrp .hero-details h2 span {
    color: #f63 !important;
}

.hero-wrp .info-block {
    position: absolute;
    left: 5px;
    bottom: 10%;
    z-index: 100;
}
.hero-wrp .info-block ul li {
    margin: 0 0 8px;
}
.hero-wrp .info-block ul li:last-child {
    margin: 0;
}
.hero-wrp .info-block ul li a {
    border: 1px solid #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}
.hero-wrp .info-block ul li a:hover {
    background: #ea0a45;
    border-color: #ea0a45;
    color: #fff;
}
.hero-wrp .info-block ul li a.play-icon i:before {
    content: "\f04b";
}
/* **** End Hero **** */

/* **** Down Arrow **** */
.down-arrow {
    position: absolute;
    background: #ea0a45;
    width: 54px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: -20px;
    z-index: 99;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
.down-arrow:hover {
    background: #f95c19;
    color: #fff;
}
@keyframes mover {
    from {
        transform: translate(-50%, 0px);
    }
    to {
        transform: translate(-50%, -15px);
    }
}
/* **** End Down Arrow **** */

/* **** Chat **** */
.chat-link {
    position: fixed;
    right: 43px;
    top: 50%;
    z-index: 99;
    border-radius: 2px 0 2px 0;
    background: #fff;
    transform-origin: top right;
    -webkit-transform: translate(0, -50%) rotate(-90deg);
    transform: translate(0, -50%) rotate(-90deg);
    padding: 8px 18px;
    color: #201228;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.chat-link span {
    display: flex;
    align-items: flex-end;
}
.chat-link img {
    margin-left: 10px;
}
.chat-link:hover {
    background: #fff;
    color: #201228;
}
.chat-block {
    position: fixed;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    width: 550px;
    right: -550px;
    z-index: 99;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.chat-body {
    height: calc(100vh - 250px);
    background: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.chat-block.open {
    right: 0;
}
a.chat-link.open {
    opacity: 0;
    visibility: hidden;
}
.chat-block.minimize .chat-body {
    height: 0;
}
.chat-block.open.minimize .chat-header .down-icon i:before {
    content: "\f077";
}
.chat-header {
    background: #201228;
    border-radius: 2px 2px 0 0;
    padding: 8px 12px;
}
.chat-header ul {
    display: flex;
    align-items: center;
}
.chat-header ul li {
    width: 33.33%;
}
.chat-header ul li h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin: 0;
}
.chat-header ul li h4 img {
    max-width: 100%;
    margin-right: 10px;
}
.chat-header ul li h5 {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.chat-header ul li h5 img {
    filter: brightness(0) invert(1);
    margin-left: 5px;
}
.chat-header ul li .right-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.chat-header ul li .right-icons a {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-header ul li .right-icons a:last-child {
    margin: 0;
}
.chat-header ul li .right-icons a:hover {
    background: #ff6633;
}

.chat-body .whatsapp{
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh;
}

/* **** End Chat **** */

/* **** Whoweare **** */
.whoweare-wrp {
    min-height: 100vh;
    padding: 180px 0 180px;
    position: relative;
}
.whoweare-wrp .who-img1 {
    width: 15%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.whoweare-wrp .who-img2 {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.whoweare-wrp .container {
    max-width: 1170px;
}
.whoweare-wrp .whoweare-title h2 {
    color: #201228;
    text-align: right;
    font-size:100px;
    font-weight: 900;
    line-height: 125px;
    text-transform: uppercase;
    margin: 0;
}
.whoweare-wrp .whoweare-description {
    padding: 40px 0 0;
}
.whoweare-wrp .whoweare-description h2 {
    color: #201228;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 35px;
    padding: 0 0 35px;
    border-bottom: 3px solid #201228;
}
.whoweare-wrp .whoweare-description h2 span {
    display: inline-block;
    background: #ff6633;
    color: #fff;
    padding: 0 2px;
}
.whoweare-wrp .whoweare-description p {
    color: #201228;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 10px;
}
.about-home-wrp .service-dy a,
.whoweare-wrp .whoweare-description a {
    color: #201228;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    padding: 12px 26px 12px 8px;
    display: table;
    position: relative;
    margin: 15px 0 0;
}
.about-home-wrp .service-dy a span,
.whoweare-wrp .whoweare-description a span{
    color: #fff;
}
.about-home-wrp .service-dy a:before,
.whoweare-wrp .whoweare-description a:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 60%;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ea0a45;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: -1;
}
.about-home-wrp .service-dy a:hover,
.whoweare-wrp .whoweare-description a:hover{color: #fff;} 
.about-home-wrp .service-dy a:hover:before,
.whoweare-wrp .whoweare-description a:hover:before{width: 100%;}
/* **** End Whoweare **** */

/* **** Why **** */
.why-wrp {
    padding: 100px 0 0;
    background: #201228;
    position: relative;
}
.why-wrp .titlebar h2 {
    color: #fff;
    text-align: center;
    font-size: 120px;
    font-weight: 900;
    line-height: 140px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
/* **** End Why **** */

/* **** Experience **** */
.experience-wrp {
/*    padding: 250px 0 300px;*/
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
}
.experience-wrp h5 {
    color: #000000;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 50px;
}
.experience-wrp h5 span {
    font-weight: 700;
    color: #f63;
}
.experience-wrp .btn-primary {
    margin: 0 auto;
}
/* **** End Experience **** */

/* **** SERVICES **** */
.service-wrp {
    background-image: url("../images/specialized-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 150px 0;
    position: relative;
    border-radius: 16px;
}
.service-wrp:before {
    position: absolute;
    content: "";
    top: 0;
    border-radius: 16px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #0a090d;
    opacity: 70%;
}
.service-wrp .row {
    align-items: center;
}
.service-wrp .service-block {
    position: relative;
    z-index: 9;
}
.service-wrp h2 {
    color: #fff;
    text-align: right;
    font-size: 100px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin: 0;
}
.service-wrp h2 span{
    display: block;
}
.service-wrp img {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
}

.service-wrp p{
    font-size: 20px;
    color: #f8f9fa;
    text-align: justify;
}

.service-wrp .container a{
    color: #f63;
    font-size: 30px;
}
/* **** End SERVICES **** */

/* **** Works **** */
.works-wrp {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.works-wrp .container {
    max-width: 1270px;
}
.works-wrp h2 {
    color: #201228;
    text-align: center;
    font-size: 90px;
    font-weight: 900;
    line-height: normal;
    margin: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works-wrp h2 span{
    display: block;
    margin: 0 5px;
}
.work-block ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.work-block ul:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 106px;
    border-bottom: 1px dashed #cacaca;
}
.work-block ul li .work-icon {
    width: 213.551px;
    height: 213.551px;
    border-radius: 213.551px;
    border: 1px solid #c6c6c6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px;
    position: relative;
    z-index: 5;
}
.work-block ul li .work-icon img {
    max-width: 100%;
}
.work-block ul li h5 {
    color: #000;
    text-align: center;
    font-size: 34px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
/* **** End Works **** */

/* **** Delivery **** */
.delivery-wrp {
    background-image: url("../images/delivery-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 150px 0;
    position: relative;
    border-radius: 16px;
}
.delivery-wrp:before {
    position: absolute;
    content: "";
    top: 0;
    border-radius: 16px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #0a090d;
    opacity: 80%;
}
.delivery-wrp .delivery-block {
    position: relative;
    z-index: 9;
}
.delivery-wrp .delivery-block .play-btn {
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 60px;
    font-size: 40px;
    border-radius: 115px;
    background: #f95c19;
    color: #fff;
}
.delivery-wrp .delivery-block .play-btn:hover{
    background: #ea0a45;
}
.delivery-wrp .delivery-block h2 {
    color: #f95c19;
    text-align: center;
    font-size: 96px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.delivery-wrp .delivery-block p {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 60px;
}
.delivery-wrp .delivery-block a.btn-primary {
    margin: 0 auto;
    background: #f95c19;
}
.delivery-wrp .delivery-block a.btn-primary:hover {
    background: transparent;
    color: #f95c19;
}
/* **** End Delivery **** */

/* **** TESTIMONIAL **** */
.testimonial-wrp {
    padding: 150px 0 130px;
    min-height: 100vh;
    position: relative;
}
.testimonial-wrp:before,
.testimonial-wrp:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #dfdeec 54.45%, rgba(224, 223, 236, 0) 100%);
}
.testimonial-wrp:before {
    z-index: 2;
    left: auto;
    right: 0;
    background: linear-gradient(270deg, #dfdeec 54.45%, rgba(224, 223, 236, 0) 100%);
}
.testimonial-wrp .testimonial-title {
    display: table;
    padding: 0 180px;
    position: relative;
    margin: 0 auto 70px;
}
.testimonial-wrp .testimonial-title img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.testimonial-wrp .testimonial-title h6 {
    color: #f95c19;
    font-size: 31.25px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-align: center;
}
.testimonial-wrp .testimonial-title h3 {
    color: #11111d;
    font-size: 39px;
    font-weight: 800;
    margin: 0;
    text-align: center;
}
.testimonial-wrp .slick-slide {
    margin: 0 45px;
}
.testimonial-wrp .slick-list {
    margin: 0 -45px;
}
.testimonial-wrp .slider-box {
    border-radius: 16px;
    background: #fff;
    margin: 20px 0;
    box-shadow: 0px 0px 20px 5px rgba(0, 19, 119, 0.05);
    padding: 40px 52px;
}
.testimonial-wrp .slider-box h5 {
    color: #f95c19;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px;
}
.testimonial-wrp .slider-box p {
    color: #464558;
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin: 0 0 20px;
    text-align: justify;
}
.testimonial-wrp .slider-box .rating-icons span {
    display: flex;
    align-items: center;
    color: #f95c19;
    font-size: 20px;
}
.testimonial-wrp .slider-box .rating-icons span i {
    margin-right: 10px;
}
.testimonial-wrp .slider-box .user-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.testimonial-wrp .slider-box .user-box h6 {
    margin: 0;
    font-size: 16px;
    color: #464558;
    font-weight: 500;
    margin: 0;
}
.testimonial-wrp .slider-box .user-box h6 span {
    font-weight: bold;
    display: block;
    text-align: right;
}
.testimonial-wrp .slider-box .user-box img {
    margin-left: 15px;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonial-wrp .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto 0;
}
.testimonial-wrp .slick-dots li {
    margin-right: 10px;
    line-height: 0;
}
.testimonial-wrp .slick-dots li:last-child {
    margin: 0;
}
.testimonial-wrp .slick-dots li button {
    font-size: 0;
    border: none;
    background-color: #f95c19;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    opacity: 0.5;
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.testimonial-wrp .slick-dots li.slick-active button {
    opacity: 1;
}
/* **** slick Arrow **** */
.testimonial-wrp .slick-prev,
.testimonial-wrp .slick-next {
    position: absolute;
    left: 40px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    z-index: 9;
    font-size: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.testimonial-wrp .slick-next {
    left: auto;
    right: 40px;
}
.testimonial-wrp .slick-prev:before,
.testimonial-wrp .slick-next:before {
    position: absolute;
    content: "\f104";
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #f95c19;
    color: #fff;
    font-size: 23px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.testimonial-wrp .slick-next:before {
    left: auto;
    right: 0;
    content: "\f105";
}
.testimonial-wrp .slick-prev:hover:before,
.testimonial-wrp .slick-next:hover:before {
    background-color: #000;
    color: #fff;
}
/* **** End slick Arrow **** */
/* **** End TESTIMONIAL **** */

/* **** Contact **** */
.contact-wrp {
/*    padding: 150px 0 200px;*/
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
}
.contact-wrp .row {
    align-items: center;
}
.contact-wrp .container {
    max-width: 1260px;
}
.contact-wrp .contact-detail img {
    max-width: 100%;
    margin: 0 0 60px 90px;
}
.contact-wrp .contact-detail h3 {
    color: #ea0a45;
    font-size: 36px;
    font-weight: 800;
    line-height: normal;
    margin: 0;
}
.contact-wrp .contact-detail p {
    color: #222132;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}
.contact-wrp form .form-group {
    margin: 0 0 20px;
}
.contact-wrp form .form-group .form-control {
    border-radius: 5px;
    border: 1px solid #392c41;
    background: #ece3f1;
    color: #9291a1;
    font-size: 16px;
    font-weight: 400;
    padding: 18px 28px;
    box-shadow: none;
    outline: none;
}
.contact-wrp form .form-group .form-control:focus {
    color: #222132;
    font-weight: 700;
}
.contact-wrp form button {
    margin: 75px 0 0;
    font-size: 20px;
    padding: 20px;
    border: none;
    width: 100%;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/* **** End Contact **** */

/* **** UPDATE ***** */
.update-wrp {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
    background: #ece3f1;
}
.update-wrp h2 {
    color: #f95c19;
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 60px;
    text-align: center;
}
.update-wrp .row {
    margin: 0 -40px;
}
.update-wrp .col-md-4 {
    padding: 0 40px;
}
.update-wrp .update-box img {
    width: 100%;
    border-radius: 16px;
    margin: 0 0 25px;
}
.update-wrp .update-box h3 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 15px;
    text-align: justify;
}
.update-wrp .update-box p{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}
.update-wrp .btn-primary {
    margin: 80px auto 0;
    background: #f95c19;
}
.update-wrp .btn-primary:hover {
    background: transparent;
    color: #ea0a45;
}
/* **** End UPDATE ***** */

/* **** Download App **** */
.download-wrp{
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
    /*background: #ece3f1;*/
    background: #fff;
}
.download-wrp h2{
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0 auto 65px;
}
.download-row{
    max-width: 500px;
    margin: 0 auto;
}
.download-row .row{
    align-items: center;
}
.app-screen img{
    width: 100%;
}
.app-dwonbx img{
    margin: 0 auto 30px;
}
.playsotr img{
    width: 170px;
}

/* **** End Download App **** */

/* **** Footer **** */
footer {
    background: #201228;
    padding: 30px 0;
}
footer .row {
    align-items: center;
}

footer .address p{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
footer .foot-logo img {
    max-width: 100%;
    height: 50px;
}
footer .social-icon ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
footer .social-icon ul li {
    margin-right: 20px;
}
footer .social-icon ul li:last-child {
    margin: 0;
}
footer .social-icon ul li a {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
footer .social-icon ul li a img{width: 40px;}
footer .social-icon ul li a:hover {
    -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);    
}
footer .copyright {
    margin: 25px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .copyright p {
    color: #fff;
    font-size:18px;
    font-weight: 400;
    margin: 0;
}
footer .copyright ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
footer .copyright ul li {
    margin-right: 30px;
}
footer .copyright ul li:last-child {
    margin: 0;
}
footer .copyright ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
footer .copyright ul li a:hover {
    color: #ea0a45;
}
/* **** End Footer **** */

/* **** Back to Top **** */
#back-to-top {
    display: none; /* Initially hide the button */
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #ea0a45;
    z-index: 119;
    border: none;
}
/* **** End Back to Top **** */



/* **** Why Slider ***** */
.why-slider{

}
.why-slider .slick-slide {
    margin: 0 35px;
}
.why-slider .slick-list {
    margin: 0 -35px;
}

.why-slider .slider-box{
    border-radius: 20.834px;
    background: #FDFDFD;
    padding: 70px 55px;
    position: relative;
}
.why-slider .slider-box .picture-img{
    max-width: 72px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    filter: brightness(0) invert(0);
}
/* **** End Why Slider ***** */


.modal{
    background: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialog{
    max-width: 750px;
}
.modal .modal-dialog .modal-content{
    padding: 40px;
    background: #201228;
    border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    border: none;
}
.modal .modal-dialog .modal-content .btn-close{
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;    
    color: #201228;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin: 0;
    float: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.modal .modal-dialog .modal-content .btn-close:hover{
    background: #000;
    color: #fff;
}

.modal .modal-content .summary-title{
    margin: 0 0 50px;
}
.modal .modal-content h2{
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 25px;
}
.modal .modal-content p{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #fff;
    font-weight: 500;
    margin: 0 0 30px;
}
.modal .modal-content p:last-child{
    margin: 0;
}


.inner-header .navbar-search .form-group .form-control{
    border: 1px solid #fff;
}
.inner-header .navbar-search .form-group button{
    height: 56px;
    width: 62px;
}

.inner-header .toggle-bix h6{
    color: #fff;
}
.inner-header .navbar-toggler-icon{
    border-color: #fff;
}
.inner-header .navbar-toggler-icon:before,
.inner-header .navbar-toggler-icon:after{
    background-color: #fff;
}
.inner-header.open .navbar-toggler .navbar-toggler-icon:before,
.inner-header.open .navbar-toggler .navbar-toggler-icon:after{
    background-color: #fff;
}

header.scrolled.inner-header h6{
    color: #fff;
}
header.scrolled.inner-header .navbar-toggler-icon{
    border-color: #fff;
}
header.scrolled.inner-header .navbar-toggler-icon:before,
header.scrolled.inner-header .navbar-toggler-icon:after{
    background-color: #fff;
}
header.scrolled.inner-header.open .navbar-toggler .navbar-toggler-icon:before,
header.scrolled.inner-header.open .navbar-toggler .navbar-toggler-icon:after{
    background-color: #fff;
}
header.scrolled.inner-header.open .navbar-toggler-icon{
    border-color: transparent;
}


/* **** About Hero **** */
.about-hero{
    position: relative;
}
.about-hero img{
    width: 100%;
}
.about-hero h2{
    font-size: 280px;
    color: #212529;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}
/* **** End About Hero **** */


/* **** story **** */
.story-wrp{
    padding: 185px 0 350px;
    background: #f5f5f5;
    position: relative;
}
.story-wrp .container{
    max-width: 1340px;
}
.story-wrp .story-title .row{
    align-items: center;
}

.story-wrp .story-title h3{
    font-size: 54px;
    line-height: 66px;
    color: #171112;
    text-transform: uppercase;
    border-bottom: 2px solid #171112;
    padding: 0 0 40px 0;
    margin: 0 0 30px;
    font-weight: bold;
}
.story-wrp .story-title p{
    color: #171112;
    font-size: 18px;
    line-height: 26px;
    padding: 0;
    margin: 0;
    /* text-transform: uppercase; */
    font-weight: 400;
}
.story-wrp .story-title p span{
    background: #ff6633;
    display: inline-block;
    padding: 0 4px;
    color: #fff;
}
.story-wrp .story-title h2{
    text-align: right;
    color: #000;
    font-size: 145px;
    text-transform: uppercase;
    line-height: 140px;
    font-weight: bold;
    margin: 0;
}
.story-wrp .description-block{
    margin: 100px 0 0;
}
.story-wrp .description-block .description{
    background: #ff6633;
    padding: 40px;
    position: relative;
    z-index: 55;
}
.story-wrp .description-block .description p{
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    font-weight: 300;
    margin: 0;
}
.story-wrp .description-block .description h3{
    font-size: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}
/* **** End story **** */

.story-wrp{
    padding: 150px 0;
}
.story-wrp .service-pg-wrp{
    padding: 0;
}
.story-wrp .serivce-row{
    margin: 0;
}
.story-wrp .service-pg-wrp h2{
    border-bottom: none;
    padding: 0;
}
.story-wrp .service-pg-wrp .service-dy h3{
    padding: 0 0 30px;
    border-bottom: 1px solid #000;
    margin: 0 0 30px;
}


/* **** About ***** */
.about-wrp{
    padding: 0px 0 150px;
}
.about-wrp h1{
    width: 100%;
    text-transform: uppercase;
    font-size: 350px;
    color: #ededed;
    text-align: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    z-index: -1;
}
@keyframes bounce {
     from {
         transform: translateY(0px);
    }
     to {
         transform: translateY(-15px);
    }
}
.about-wrp .titlebar{
    display: table;
    max-width: 988px;
    margin: 0 0 60px auto;
}
.about-wrp .titlebar h3{
    width: 100%;
    margin: 0 0 25px 0;
    padding: 0 0 25px 0;
    font-weight: bold;
    font-size: 54px;
    color: #171112;
    line-height: 66px;
    border-bottom: 2px solid #000;
    text-transform: uppercase;
}
.about-wrp .titlebar p{
    width: 100%;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 19px;
    color: #171112;
    line-height: 28px;
}   
.counter-block{
    max-width: 988px;
    margin: 0 0 0 auto;
}
.counter-block .count-box{
    margin: 0 0 40px;
}
.counter-block .count-box h2{
    font-size: 54px;
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 54px;
    font-weight: bold;
    margin: 0;
}
.counter-block .count-box p{
    font-size: 18px;
    color: #171112;
    font-weight: 300;
    padding-bottom: 10px;
    text-transform: uppercase;
    line-height: 22px;
    margin: 0;
}
.counter-block .count-box span.line{
    width: 54px;
    height: 4px;
    background: #ff6633;
    display: table;
}
/* **** End About ***** */


/* **** work-to-gether ***** */
.work-to-gether{
    padding: 200px 0;
    position: relative;
}
.work-to-gether h1{
    width: 100%;
    text-transform: uppercase;
    font-size: 300px;
    color: #ededed;
    text-align: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    z-index: -1;
}
.work-to-gether h2{
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 48px;
    line-height: 48px;
    color: #171112;
    text-align: center;
    font-weight: bold;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.work-to-gether p{
    font-size: 26px;
    line-height: 36px;
    color: #171112;
    font-weight: 400;
    text-align: center;
    margin: 0;
}
.work-to-gether h3{
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 32px;
    padding: 20px 0 40px 0;
    margin: 0;
}
.work-to-gether h6{
    font-size: 26px;
    line-height: 36px;
    color: #171112;
    font-weight: 400;
    text-align: center;
    margin: 0;
    width: 75%;
    margin: 0 auto 150px;
}
.work-to-gether a{
    font-size: 15px;
    color: #191114;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 35px;
    margin: 0 auto;
    display: table;
}
.work-to-gether a:before{
    position: absolute;
    content: "";
    display: inline-block;
    bottom: 0;
    right: -5px;
    background: #ff6633;
    width: 63px;
    height: 23px;
    z-index: -1;
    transition: all 0.4s ease;
}
.work-to-gether a:hover:before{
    width: 100%;
}
/* **** End work-to-gether ***** */



/* **** Contact Banner ***** */
.contact-banner{
    padding: 80px 0 0;
}
.we-r-ready h1{
    font-size: 72px;
    font-weight: bold;
    color: #000;
    margin: 0 0 50px;
}
.we-r-ready h4 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    display: table;
    padding: 5px;
    color: #fff;
    background: #FF6633;
    margin: 0;
}
.we-r-ready h2 {
    font-size: 48px;
    line-height: 48px;
    color: #000 ;
    font-weight: 500;
    margin: 0 0 20px;
}
.we-r-ready h2 span {
    color: #000;
}
.we-r-ready p {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 500;
    margin: 0;
    max-width: 550px;
}
/* **** End Contact Banner ***** */



/* **** contact-form **** */
.contact-form-wrp{
    padding: 60px 0;
}
.contact-form-wrp .do-u-wish {
    padding-top:40px;
    padding-bottom:30px;
}
.contact-form-wrp .do-u-wish h2 {
    font-size: 34px;
    line-height: 38px;
    color: #000000;
    font-weight: 200;
    letter-spacing: 1px;
    margin: 0;
}
.contact-form-wrp .do-u-wish h2 span {
    font-weight: bold;
}
.contact-form-wrp .do-u-wish p {
    font-size: 16px;
    line-height: 24px;
    color: #595556;
    font-weight: 400;
    margin: 8px 0 0;
}
.contact-form-wrp form .form-group{
    margin: 0 0 30px;
}
.contact-form-wrp form .form-group .form-control{
    border-radius: 5px;
    border: 1px solid #392c41;
    background: #ece3f1;
    color: #9291a1;
    font-size: 16px;
    font-weight: 400;
    padding: 18px 28px;
    box-shadow: none;
    outline: none;
}
.contact-form-wrp form h6{
    font-size: 17px;
    line-height: 24px;
    color: #595556;
    font-weight: 500;
    margin: 0 0 10px;
}
.contact-form-wrp form ul{
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.contact-form-wrp form ul li{
    margin-right: 30px;
}
.contact-form-wrp form ul li:last-child{
    margin: 0;
}
.contact-form-wrp form .form-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.contact-form-wrp form .form-checkbox label {
    position: relative;
    cursor: pointer;
    color: #595556;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.contact-form-wrp form .form-checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    width: 20px;
    height: 20px;
    background: #e9e9e9;
    border: 0;
    overflow: hidden;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
}
.contact-form h2{
    font-size: 36px;
    font-weight: 400;
    color: #000;
    margin: 0 0 40px;
}
.contact-form-wrp form .form-checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 5px;
    height: 12px;
    border: solid #201228;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.contact-form-wrp form button{
    color: #191114;
    background: #ea0a45;
    padding: 14px 30px;
    width: 150px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.contact-form-wrp form button:hover{
    letter-spacing: 5px;
    background: transparent;
    color: #201228;
}
.contact-pg-wrp .contact-detail{
    max-width: 450px;
    float: right;
}
/* **** End contact-form **** */

/* **** FAQ **** */

.faq-container {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
  }
  
.faq-imgs img{
    float: right;
}
.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
  }
  
  .question.active::after {
    transform: rotate(45deg);
  }
  
  .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
  }
  
  .question.active + .answercont {
  }

/* **** End FAQ **** */

/* **** Contact Map **** */
.contact-map{
    padding: 60px 0 100px;
}
.contact-map h2{
    font-size: 34px;
    line-height: 38px;
    color: #000000;
    font-weight: 200;
    letter-spacing: 1px;
    margin: 0 0 40px;
    letter-spacing: 2px;
}
.contact-map h2 span{
    font-weight: bold;
}
.contact-map p{
    font-size: 18px;
    font-weight: normal;
    color: #333;
    line-height: 26px;
    margin: 0 0 35px;
}
.contact-map .map-block{
    height: 630px;
}
.contact-map .map-block iframe{
    height: 100%;
    width: 100%;
}
/* **** End Contact Map **** */


/* **** Modal Status Modal **** */
#StatusModal .modal-dialog{
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
}
#StatusModal .modal-dialog .modal-content{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .modal-content .status-block h2{
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 100px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin: 0 0 100px;
}
.modal .status-block{
    width: 1235px;
}
.modal .status-block ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.modal .status-block ul:before{
    position: absolute;
    content: "";
    top: 50px;
    left: 50%;
    height: 20px;
    width: 80%;
    margin: 0 auto;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.modal .status-block ul li{
    width: 25%;
    position: relative;
}
.modal .status-block .status-icon{
    width: 114px;
    height: 114px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    margin: 0 auto 80px;
}
.modal .status-block .status-icon img{
    max-width: 100%;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.modal .status-block .status-icon:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #EA0A45;
    border-radius: 100%;
    transform: scale(0);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.modal .status-block ul li:before{
    position: absolute;
    content: "";
    top: 50px;
    left: 50%;
    height: 20px;
    width: 0%;
    margin: 0 auto;
    background: #EA0A45;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    border-radius: 30px;
}
.modal .status-block ul li:last-child:before{
    display: none;
}
.modal .status-block h3{
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.modal .status-block li:hover:before{
    width: 100%;
}
.modal .status-block li:hover .status-icon:before{
    transform: scale(1.0);
}
.modal .status-block li:hover .status-icon img{
    filter: brightness(0) invert(1);
}

.modal .status-block li.active .status-icon:before{transform: scale(1.0);}
.modal .status-block li.active .status-icon img{filter: brightness(0) invert(1);}

.modal .status-block li.current:before{width: 100%;}
.modal .status-block li.current .status-icon:before{transform: scale(1.0);}
.modal .status-block li.current .status-icon img{filter: brightness(0) invert(1);}
/* **** End Modal Status Modal **** */


/* **** Service Page **** */
.service-pg-wrp{
    padding: 60px 0;
}
.service-pg-wrp h2{
    font-size: 62px;
    font-weight: bold;
    color: #000;
    display: table;
    padding: 0 0 10px;
    margin: 0 0 30px;
    border-bottom: 1px solid #000;
}
.serivce-row{
    margin: 0 0 45px;
}
.serivce-row .row{
    align-items: center;
}
.serivce-img img{
    width: 100%;
}
.service-dy h3{
    font-size: 34px;
    font-weight: bold;
    color: #000;
    margin: 0 0 25px;
}
.service-dy h3 span{
    background:#FF6633;
    color: #fff;
    padding:0 5px;
    display: table;
}
.service-dy p{
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 24px;
    margin: 0;
    text-align: justify;
}
/* **** End Service Page **** */

.abtpg-dt{
    position: relative;
}
.abtpg-dt h2{
    border-bottom: none;
    padding: 0;
}
.abtpg-dt .service-dy h3{
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #000;
}
.abtpg-dt .service-dy h3 span{display: inline-block;}
.abtpg-dt .serivce-img{
    position: absolute;
    right: 0;
    bottom:10%;
}

.about-home-wrp{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}