/* ***** Common Css **** */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure{margin: 0;}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;    
}
.main-wrpper {
    height:auto;
    width: 100%;
}
.container{
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-md-3{
    width: 25%;
    padding: 0 15px;
}
.col-md-4{
    width: 33.33%;
    padding: 0 15px;
}
.col-md-6{
    width: 50%;
    padding: 0 15px;
}

/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 30px 0;
    border: none;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.nav-new{
    padding: 15px 0;
    background: #000;
}
.nav-row{
    display: flex;
    align-items: center;
    width: 100%;
}
.logo-box a img{
    height: 88px;
}
.navbar-rw{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 0 auto;
}
ul.navbar-links{
    display: flex;
    align-items: center;
    margin-right: 65px;
}
ul.navbar-links li{
    margin-right: 100px;
}
ul.navbar-links li:last-child{
    margin: 0;
}
ul.navbar-links li a{
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    display: block;
    line-height: 28px;
    padding: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
ul.navbar-links li.active a,ul.navbar-links li a:hover{
    color: #01EFFC;
}
ul.social-bx{
    display: flex;
    align-items: center;
}
ul.social-bx li{
    margin-right: 20px;
}
ul.social-bx li:last-child{
    margin: 0;
}
ul.social-bx li a:hover{
    opacity: 0.70;
}

.btn-close,
.logo-box .btn-bar{
    max-width: 30px;
    display: none;
}
.close{display: none;}
.logo-box .btn-bar img{
    width: 100%;
    height: auto;
}
/* **** End Header **** */

/* **** Home Page **** */
.hero-banner-wrp{
    position: relative;    
    overflow: hidden;
}
.banner-shap{
    position: absolute;
    left:20px;
    bottom:15px;
    z-index: 3;
    width: 55px;
    animation: zoom 8s linear infinite;
    -webkit-animation: zoom 8s linear infinite;
}
.banner-shap img{
    width: 100%;
    display: block;
}
/*.hero-banner-wrp:hover .banner-shap img{
    width: 100%;
}*/
@-webkit-keyframes zoom {
  0 {
    width: 55px;
  }
  
  50%{
    width: 100%;
    opacity: 0.26;
  }

  100% {
    width: 55px;
  }
}
.video-frame{
    width: 100%;
    height: 95vh;
	position: relative;
    z-index: 2;
    border-radius: 0 0 288px 288px;
    overflow: hidden;
}
.video-frame video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}
.video-frame:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.50;
    top: 0;
    left: 0;
}
.banner-center{
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 5;
}
.banner-center .container{
    max-width: 1120px;
}
.banner-center h1{
    font-weight: 700;
    font-size: 50px;
    line-height: 75px;
    text-align: center;
    color: #01EFFC;
    margin: 0 auto 13px;
}
.banner-center p{
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 75px;
}
.banner-center .btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}
.btn-main{
    padding: 8px 20px;
    background: #0A4DDE;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    position: relative;
    overflow: hidden;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-main span{
    position: relative;
    z-index: 1;
}
.btn-main:after{
    position: absolute;
    content: '';
    background: linear-gradient(0deg, #0C31DA 10.39%, #0B40DC 16.49%, #05A5EF 57.17%, #01E6FA 85.64%, #00FFFF 98.86%);    
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-main:hover:after{
    height: 100%;
}

.btn-secondary{
    padding: 8px 20px;
    background: #01EFFC;
    min-width: 165px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #0A4DDE;
    position: relative;
    overflow: hidden;
    border: none;
}
.btn-secondary span{
    position: relative;
    z-index: 1;
}
.btn-secondary:after{
    position: absolute;
    content: '';
    background: linear-gradient(0deg, #0C31DA 10.39%, #0B40DC 16.49%, #05A5EF 57.17%, #01E6FA 85.64%, #00FFFF 98.86%);    
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-secondary:hover:after{
    height: 100%;
}
.btn-secondary:hover{
    color: #fff;
}

.our-technology-wrp{
    position: relative;
    padding: 130px 0 75px;
}
.our-technology-wrp .container{
    max-width: 1220px;
}
.our-technology-wrp:after{
    position: absolute;
    content: '';
    width: 155px;
    height: 155px;
    border-radius: 100%;
    background: #01EFFC;
    top: -85px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.our-technology-wrp:before{
    position: absolute;
    content: '';
    width: 155px;
    height: 155px;
    border-radius: 100%;
    background: #01EFFC;
    top: -155px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    transition: top 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: top 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.our-technology-wrp:hover:before{
    top: 45.5%;
}
.titlebar{
    margin: 0 auto 75px;
}
.our-technology-wrp .titlebar{
    margin: 0 auto 100px;
}
.titlebar figure{
    margin: 0 auto 20px;
    display: table;
}
.titlebar h2{
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
    text-align: center;
    color: #000000;
    margin: 0;
}
.top-tech-box{
    width: 33.112%;
    margin: 0 auto 55px;
    position: relative;
    border-left: 4.737px solid #01EFFC;
    border-right: 4.737px solid #01EFFC;
    padding: 27.5px 15px;
}
.top-tech-box:after{
    position: absolute;
    content: '';
    background: #01EFFC;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: 1.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 1.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.top-tech-box:hover:after{
    width: 100%;
}
.top-tech-box h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #000000;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}
.top-tech-box p{
    margin: 0 auto;
    font-weight: 700;
    font-size: 17px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    position: relative;
    z-index: 1;
}

.tech-row ul{
    display: flex;
    flex-wrap: wrap;
    border-left: 4.737px solid #01EFFC;
    border-right: 4.737px solid #01EFFC;
}
.tech-row ul li{
    width: 33.33%;
    padding:11.5px 24px;
    border-right: 4.737px solid #01EFFC;
}
.tech-row ul li:last-child{
    border: none;
}
.tech-row ul li h4{
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
}
.tech-row ul li p{
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #000000;
}

.who-we-are-wrp{
    position: relative;
    transition: 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.who-we-are-wrp:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    background: #000;
    bottom: 0;
    left: 0;
    right: 0;
}
.who-we-are-row:after{
    position: absolute;
    content: '';
    background: linear-gradient(0deg, #0C31DA 10.39%, #0B40DC 16.49%, #05A5EF 57.17%, #01E6FA 85.64%, #00FFFF 98.86%);
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.who-we-are-row{
    position: relative;
    background: #0A4DDE;
    border-radius: 288px 0 288px 288px;
    padding: 130px 0;   
    overflow: hidden;
}
.who-we-are-wrp:hover .who-we-are-row:after{
    opacity: 1;
}
.who-we-img{
    width: 47%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.who-we-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 284px 0 100px 284px;
}
.who-we-are-block{
    width: 55%;
    position: relative;
    z-index: 1;
}
.who-we-data{
    max-width: 645px;
    margin: 0 0 45px;
}
.who-we-data h2{
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
    color: #01EFFC;
}
.who-we-data p{
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
    color: #FFFFFF;
    margin: 0;
}
.who-we-box h3{
    margin: 0 0 40px;
    font-weight: 275;
    font-size: 50px;
    line-height: 75px;
    color: #01EFFC;
}
.who-we-box h4{
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #01EFFC;
}
.who-we-box p{
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #FFFFFF;
}
.who-we-box figure{
    margin: 0 0 40px;
	min-height:75px;
}

.what-deliver-wrp{
    padding: 125px 0 175px;
    background: #000;
    position: relative;
    border-radius: 0 0 227px 227px;
    overflow: hidden;
}
.what-deliver-wrp .container{
    max-width: 1390px;
    position: relative;
    z-index: 1;
}
.what-deliver-wrp .titlebar h2{
    color: #FFFFFF;
}
.what-deliver-wrp .row{
    margin: 0 -8px;
}
.what-deliver-wrp .row .col-md-6{
    padding: 0 8px;
}
.deliver-block{
    position: relative;
    margin: 0 0 16px;
}
.deliver-block:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #002FA6;
    opacity: 0.47;
    top: 0;
    left: 0;
}
.deliver-block img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.deliver-data{
    max-width: 370px;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.deliver-data h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 15px;
}
.deliver-data p{
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto;
}
.deliver-video-box{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.deliver-video-box video{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.sectors-empower-wrp{
    padding: 96px 0 130px;
    position: relative;
}

.empower-icon{
    margin: 0 auto 35px;
    display: table;
}
figure.emp-ic{
    max-width: 74px;
}
figure.emp-ic img{
    margin: 0 auto;
}
.empower-icon img.shaptop{
    margin: 0 auto 5px;
    transition: 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.empower-data h3{
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin: 0 auto 10px;
}
.empower-data p{
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: center;
    color: #000000;
}
.empower-box:hover .empower-icon img.shaptop{
    transform: translateY(-12px);
    -webkit-transform: translateY(-12px);
}

.partnerships-wrp{
    position: relative;
}
.partnerships-wrp .container{
    max-width: 1590px;
}

.partnerships-block{
    position: relative;
    padding: 85px 0 100px;
    border-radius: 400px;
	overflow: hidden;
	transition: 1.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 1.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	/*background: url('../images/partnership-backnew.png') 0 0 no-repeat;
    background-size: cover;
	background-attachment:fixed;*/
}

/*.partnerships-block::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/partnership-backnew.png') center/cover no-repeat;
  background-attachment: fixed;
  z-index: -1;
}*/
/*.partnerships-block:hover{
    background-position: 0 -120px;
}*/
/*.partnerships-block:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #464444;
    opacity: 0.31;
    top: 0;
    left: 0;
}*/

/*.partnerships-bg{
    position: absolute;
    inset: 0;
    background: url('../images/partnership-backnew.png') center/cover no-repeat;
    z-index: -1;
}*/

/* Ensure content layers above */
.partnerships-data{
    position: relative;
    z-index: 2;
}
.partnerships-data{
    max-width: 785px;
    margin: 0 auto;
    position: relative;
}
.partnerships-data h2{
    margin: 0 auto 25px;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #01EFFC;
}
.partnerships-data p{
    margin: 0 auto 75px;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
}
.partnerships-data .btn-group{
    max-width: 590px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.partnerships-data .btn-group figure{
    min-width: 208px;
    width: 208px;
    height: 208px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partnerships-data .btn-group figure img{
    max-width: 100%;
}

.diffrent-wrp{
    padding: 78px 0 215px;
    position: relative;
}
.diffrent-wrp .container{
    max-width: 1300px;
}
.diffrent-wrp .col-md-4{
    width: 40%;
}
.make-diffrent-list ul li{
    display: flex;
    align-items: center;
    margin: 0 0 88px;
}
.make-diffrent-list ul li:last-child{
    margin: 0;
}
.diffrent-ic{
    min-width: 106px;
    width: 106px;
    height: 106px;
    background: linear-gradient(0deg, #0C31DA 10.39%, #0B40DC 16.49%, #05A5EF 57.17%, #01E6FA 85.64%, #00FFFF 98.86%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.diffrent-ic h4{
    margin: 0;
    font-weight: 500;
    font-size: 64px;
    text-align: center;
    color: #FFFFFF;
}
.diffrent-data h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #0A4DDE;
}
.diffrent-data p{
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #000000;
}
.diffrent-img{
    width: 50%;
    position: absolute;
    bottom:26%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	overflow: hidden;
}
.diffrent-img svg{
    width: 900px;
    height: 450px;
}
.diffrent-img img{
    width: auto;
	height: 425px;
	object-fit:cover;
}
image.svg__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
svg.mobile-shap{
    display: none;
}

.upgrade-wrp{
    padding: 140px 0 260px;
    position: relative;
    background: url('../images/upgrade-back.png') top no-repeat;
    background-size: cover;
    position: relative;
    transition: 1.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: 1.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.upgrade-wrp:hover{
    background-position: 0 -200px;
}
.upgrade-wrp:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.65;
    top: 0;
    left: 0;
}
.upgrade-wrp .container{
    max-width: 585px;
    position: relative;
    z-index: 2;
}
.upgrade-wrp h2{
    margin: 0 auto 25px;
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
    text-align: center;
    color: #01EFFC;
}
.upgrade-wrp p{
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 75px;
	max-width: 90%;
}
.upgrade-wrp .btn-main{
    margin: 0 auto;
    display: table;
	padding: 9px 23.36px;
    font-size: 18px;
}

footer{
    background: #000;
    position: relative;
    border-radius: 190px 190px 0 0;    
    margin: -190px 0 0;
}
.footer-top{
    padding: 85px 0 65px;
}
.footer-top .row .col-md-4{
    width: 30%;
}
.footer-top .row .col-md-8{
    width: 70%;
}
.footer-abt{
    max-width: 409px;
}
.footer-abt p{
    margin: 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 40px;
    color: #01EFFC;
}
.footer-links-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.quicklinks,
.footer-linksbox{
    width: 25%;
    padding: 0 10px;
}
.footer-linksbox h3{
    margin: 0 0 35px;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #01EFFC;
}
.footer-linksbox ul li{
    margin: 0 0 35px;
}
.footer-linksbox ul li:last-child{
    margin: 0;
}
.footer-linksbox ul li a{
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    display: table;
    position: relative;
    padding: 0 0 0 20px;
}
.footer-linksbox ul li a:hover{
    color: #01EFFC;
}
.footer-linksbox ul li a:after{
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.footer-linksbox p{
    font-size: 17px;
    font-weight:700;
    color: #fff;
    line-height:50px;
    display: table;
}
.footer-linksbox.lastbox li,.footer-linksbox.lastbox li a{
	margin: 0 0 35px;
	font-size: 17px;
    font-weight:700;
	line-height: 28px;
	 color: #fff;
}
.footer-linksbox.lastbox li a{padding:0px;}
.footer-linksbox.lastbox li:last-child{
    margin: 0;
}
.footer-linksbox.lastbox ul li a:after{content:none;}


.footer-linksbox p a{
    color: #fff;
}
.footer-linksbox p a:hover{
    color: #01EFFC;
}

.quicklinks{
    margin: 60px 0 0;
}
.quicklinks ul li{
    margin: 0 0 35px;
}
.quicklinks ul li:last-child{
    margin: 0;
}
.quicklinks ul li a{
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    display: table;
}
.quicklinks ul li a:hover{
    color: #01EFFC;
}
.copyright{
    padding: 20px 0 0;
}
.footer-socialbx{
    padding: 0 0 18px;
    border-bottom: 1px solid #01EFFC;
    display: flex;
    align-items: center;
}
.footer-socialbx a{
    margin-right: 20px;
}
.footer-socialbx a:last-child{
    margin: 0;
}
.footer-socialbx a img{
    height: 16px;
}
.footer-socialbx a:hover{
    opacity: 0.70;
}
.copyright p{
    padding: 18px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
	font-family: "Inter", sans-serif;
}
.copyright p a{
    color: #FFFFFF;
}

.social-links{
    position: fixed;
    bottom: 50px;
    left: 0;
    z-index: 125;
}
.social-links li{
    margin: 0 0 14px;
}
.social-links li:last-child{
    margin: 0;
}
.social-links li a{
    width: 47px;
    height: 47px;
    background: #01EFFC;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links li a img{
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.social-links li a:hover{
    background: #0C31DA ;
}
.social-links li a:hover img{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


/* What */
.diffrent-img figure{ margin:0; position: relative; overflow: hidden; width: 100%;}
.diffrent-wrp figure:hover .shape-bg{ top: -50px;}
/*.diffrent-wrp:hover .shape-bg{ top: -50px;}*/
.diffrent-img .shape{position: relative; z-index: 5;}
.diffrent-img .shape-bg{position: absolute; top: 0; object-fit: cover; left: 0; height: calc(100% + 50px); width: 100%; transition: all .6s ease-in-out;} 
/*.diffrent-img .jarallax-container{border: 1px solid transparent;}*/

/* **** End Home Page **** */ 