@charset "utf-8";

/*	--------------------------------------------------
	Font Setup
	-------------------------------------------------- */
  @import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

  @font-face {
    font-family: "orkney-Light";
    src: url('../fonts/orkney/orkney-light.otf');
  }

  @font-face {
    font-family: "orkney-Regular";
    src: url('../fonts/orkney/orkney-regular.otf');
  }

  @font-face {
    font-family: "orkney-Medium";
    src: url('../fonts/orkney/orkney-medium.otf');
  }

  @font-face {
    font-family: "orkney-Bold";
    src: url('../fonts/orkney/orkney-bold.otf');
  }

/*	--------------------------------------------------
	Generic CSS Setup
	-------------------------------------------------- */

:root {
  --font-family-body: 'Poppins', sans-serif;
  --font-family-heading: 'Nunito', sans-serif;
  --font-family-architects: 'Architects Daughter', cursive;
  --color-primary: #22b12e;
  --color-secondary: #fc9135;
  --color-text-body: #696969;
  --color-text-heading: #41464c;
  --color-text-paragraph: #696969;
  --facebook: #3b5998;
  --twitter: #00acee;
  --linkedin: #1976d2;
  --pinterest: #3b5998;
  --youtube: #c4302b;
  --skype: #00aff0;
}


html {
	width: 100%;
	height: 100%;
	background: #fcfcfc;
}
body {
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	padding: 0 0 0 0px;
	margin: 0 0 0 0px;
	font-family: 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.533;
	box-sizing: border-box;
	color: #6d6e6e;
}
h1, h2, h3, h4, h5, td, tr, th, div, header, section, footer, p, form, input, textarea, select, fieldset{
	font-family: 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.533;
	color: #6d6e6e;
	margin: 0 0 0 0px;
	padding: 0 0 0 0px;
	border: none;
}

a{
  text-decoration: none !important;
}

*{
outline: none;
}


.row-parent{
  width: 100%;
  margin: auto;
  height: 100%;
}.container-xl{
  height: 100%;
}
/* header============================================== */

header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.logo-aside img{
  width: 154px;
}

.body-title{
  position: relative;
  z-index: 88;
}

.phone{
  width: 100%;
  height: 100%;
  position: relative;
}

.phone::before{
  content: '';
  position: absolute;
  width: 62%;
  height: 100%;
  right: 0px;
  background-color: #00cbfc;
}

.phone img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transform: scaleX(-1); */
  object-position: bottom;
  position: relative;
  z-index: 5;
}

.body-title h3{
  font-family: "orkney-Bold";
  color: #000;
  font-size: 3.6rem;
  text-align: left;
  line-height: 1.2;
}

.bd-s{
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.body-section{
  padding-top: 190px;
  padding-left: 80px;
}

.header-box{
  padding: 0px 80px;
}

.download-buttons{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-top: 40px;
  margin-bottom: 40px;
}

.download-buttons a{
  display: block;
  width: 164px;
  margin: 0px 5px;
  transition: .3s ease;
}

.download-buttons a:hover{
  transform: scale(1.1);
}

.download-buttons a img{
  width: 100%;
}

.body-section{
  display: flex;
}

.webgb-logo{
  width: 57px;
}

footer{
  position: fixed;
  bottom: 0;
  left: 80px;
  padding: 10px;
}

footer p span{
  color: #000;
  font-size: 12px;
}

footer p a{
  color: #000;
  font-size: 12px;
}


.box-srch{
  position: absolute;
  z-index: 40;
  bottom: 31%;
  background: #fff;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  border-radius: 31px;
  box-shadow: 0 1px 6px 0 #1194b46e;
}

.box-srch span{
  font-size: 20px;
    display: block;
    margin-bottom: 7px;
    color: #00cbfc;
}

.box-srch h3{
  font-family: 'orkney-Bold';
  color: #000;
  font-size: 15px;
  margin-bottom: 5px;
}
.box-srch p{
  font-size: 12px;
  line-height: 1.2;
}

.bg-texture{
  position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform: rotate(-90deg); */
    /* bottom: 0; */
    top: 0;
    pointer-events: none;
}
.bg-texture img{
  width: 100%;
  opacity: .5;
}
@media screen and (max-width:991px) {
  .body-section{
    padding: 190px 30px;
    padding-bottom: 0px;
  }
  .body-title{
    width: 100%;
  }

  .body-title h3{
    text-align: center;
  }

  .download-buttons{
    justify-content: center;
  }
  .phone::before{
    width: 100%;
  }

  .phone::before{
    height: 80%;bottom: 0;
  }
  .box-srch{
    display: none;
  }

  .bd-s{
    overflow: unset;
    height: auto;
  }

  .phone{
    overflow: hidden;
    text-align: center;
  }
  
  .phone img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    /* transform: scaleX(1); */
    object-position: bottom;
    object-position: top;
}
  footer{
    position: unset;
  }

  footer p{
    text-align: center;
  }

.bg-texture img{
  height: 128%;
  object-fit: cover;
}
}

@media screen and (max-width:575px) {
  .body-title h3{
    font-size: 31px;
}

.phone img {
  width: 100%;
}

.logo-aside img {
  width: 102px;
}
.header-box {
  padding: 0px 30px;
}
.body-section {
  padding: 110px 30px;
  padding-bottom: 0px;
}


}

@media screen and (max-width:361px) {
  .phone img{
    height: 347px;
  }
}

@media screen and (max-width:275px) {
  .phone img{
    height: 257px;
  }
}