@font-face {
  font-family: "Mobily_Headline_Bold_v6";

  src: url("/MobilyTheme4Resources/fonts/Mobily_Headline_v6-Bold.woff2")
      format("woff2"),
    url("/MobilyTheme4Resources/fonts/Mobily_Headline_v6-Bold.woff")
      format("woff");

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Mobily_Text_Bold_v6";

  src: url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Bold.woff2")
      format("woff2"),
    url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Bold.woff") format("woff");

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Mobily_Headline_Regular_v6";

  src: url("/MobilyTheme4Resources/fonts/Mobily_Headline_v6-Regular.woff2")
      format("woff2"),
    url("/MobilyTheme4Resources/fonts/Mobily_Headline_v6-Regular.woff")
      format("woff");

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Mobily_Text_Light_v6";

  src: url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Light.woff2")
      format("woff2"),
    url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Light.woff") format("woff");

  font-weight: 300;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "MobilyText";

  src: url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Regular.woff2")
      format("woff2"),
    url("/MobilyTheme4Resources/fonts/Mobily_Text_v6-Regular.woff")
      format("woff");

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'MobilyText';
}

.hero-banner{
    min-height:100vh;
    background:linear-gradient(135deg,#003ccf 0%,#0058e6 50%,#1b75ff 100%);/*linear-gradient(0deg, var(--Mobily-Dark-Blue, #000050), var(--Mobily-Dark-Blue, #000050)),
linear-gradient(226.82deg, rgba(75, 245, 255, 0.65) -0.91%, rgba(16, 97, 255, 0.65) 82.1%),
linear-gradient(225deg, rgba(16, 97, 255, 0.65) 0%, rgba(4, 26, 126, 0.65) 100%);*/
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto auto 0;
    padding:48px 84px 0 54px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */
.logo{
    position:absolute;
    top:48px;
    left:84px;
    z-index:10;
}

.logo img{
    width:58px;
}
.light-lines {
  position: absolute;
  right: 0px;
  top: -5px;
  pointer-events: none;
}
.light-lines img {
  width: 100%;
  height: 100%;
  transform: rotate(3deg);
}
/* Decorative Lines 
.light-lines{
    position:absolute;
    left:0;
    top:0;
    width:60%;
    height:100%;
    pointer-events:none;
}

.line{
    position:absolute;
    height:4px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        rgba(0,255,255,0),
        rgba(0,255,255,.7),
        rgba(255,255,255,.9)
    );
    filter:blur(1px);
    transform:rotate(-15deg);
}

.line1{
    width:600px;
    top:190px;
    left:120px;
    opacity:.35;
}

.line2{
    width:650px;
    top:250px;
    left:80px;
    opacity:.45;
}

.line3{
    width:550px;
    top:320px;
    left:160px;
    opacity:.75;
}

.line4{
    width:420px;
    top:390px;
    left:260px;
    opacity:1;
}
*/
/* Left Section */
.page-size{max-width:1440px; width:100%; margin: auto auto 0}
.hero-left{
    flex:1;
    position:relative;
    min-height:650px;
}

.devices{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    max-width:700px;
}

.devices img{
    width:100%;
	height: 100%;
    display:block;
}

/* Right Section */
.hero-right{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    color:#fff;
    padding-left: 100px;
    z-index:2;
}

.hero-right h1{
	font-family:'Mobily_Headline_Regular_v6';
    font-size:64px;
    font-weight:400;
    line-height:80px;
    margin-bottom:32px;
}

.hero-right h2{
    font-family:'Mobily_Headline_Regular_v6';
    font-size:48px;
    font-weight:400;
    line-height:80px;
    margin-bottom:0;
}

.cta-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 20px;
    border-radius:32px;
    text-decoration:none;
    text-align:center;
    font-size:16px;
	line-height: 24px;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:rgba(21, 23, 33, 1);
}

.btn-primary:hover{
	background:rgba(255,255,255,.72);
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.8);
    color:#fff;
}

.btn-outline:hover{
    background:rgba(255,255,255,.12);
	transform:translateY(-3px);
}

/* Tablet */
@media(max-width:1024px){

    .container{
        flex-direction:column;
        text-align:center;
        padding-top:120px;
    }

    .hero-left{
        min-height:auto;
        margin-bottom:30px;
    }

    .devices{
        position:relative;
        margin:auto;
    }

    .hero-right{
        padding-left:0;
    }

    .hero-right h1{
        font-size:42px;
		line-height: 56px;
    }

    .hero-right h2{
        font-size:30px;
		line-height: 56px;
    }
}

/* Mobile */
@media (max-width:990px){
.logo img{
    width:44px;
	height: 100%;
}
	.logo{
    position:absolute;
    top:24px;
    left:24px;
    z-index:10;
}
    .hero-banner{
        min-height:100vh;
        overflow:hidden;
        position:relative;
    }

    .container{
        display:flex;
        flex-direction:column;
        height:100vh;
        padding:24px;
        position:relative;
    }
	.light-lines img{width:100%; height: 100%;}.light-lines{top:auto;}
    .hero-right{
        order:1;
        z-index:5;
        padding-top:60px;
        align-items:flex-start;
        text-align:left;
		justify-content: start;
    }

    .hero-left{
        order:2;
        position:absolute;
        left:0;
        right:0;
        bottom:0;              /* Stick to bottom */
        width:100%;
        min-height:auto;
        z-index:1;
        margin:0;
        display:flex;
        justify-content:center;
        align-items:flex-end;
    }

    .devices{
        position:relative;
        width:100%;
        display:flex;
        justify-content:center;
        align-items:flex-end;
    }

    .devices img{
        display:block;
        margin:0 auto;
		width:470px;
    }
.btn{
	padding:10px 16px;
    font-size:14px;
	line-height: 20px;
}
.cta-buttons{padding-right: 40px;}
}