@font-face {
    font-family: 'Poppins';
    src: url('../font/regular/Poppins-Regular.eot');
    src: url('../font/regular/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/regular/Poppins-Regular.woff2') format('woff2'),
        url('../font/regular/Poppins-Regular.woff') format('woff'),
        url('../font/regular/Poppins-Regular.ttf') format('truetype'),
        url('../font/regular/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/bold/Poppins-Bold.eot');
    src: url('../font/bold/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/bold/Poppins-Bold.woff2') format('woff2'),
        url('../font/bold/Poppins-Bold.woff') format('woff'),
        url('../font/bold/Poppins-Bold.ttf') format('truetype'),
        url('../font/bold/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg-colot: #F1F8FF;
    --text-color: #777;
    --link-color: #4692CE;
    --title-color: #212529;
    --white-color: #fff;
    --privacy-page-h2: #333333;
    --font-family: 'Poppins', 'sans-serif';
}

/*Default-CSS*/
input::-moz-focus-inner {
    border: 0;
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
    outline: none;
}

select::-moz-focus-inner {
    border: 0;
    outline: none;
}

option::-moz-focus-inner {
    border: 0;
    outline: none;
}

input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-moz-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-ms-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-o-file-upload-button {
    cursor: pointer;
}

input[type="file"] {
    cursor: pointer;
}

html body {
    background-color: var(--white-color);
    font-family: var(--font-family);
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.4;
}

*::-moz-selection {
    color: var(--white-color);
    background: var(--link-color);
}

::selection {
    color: var(--white-color);
    background: var(--link-color);
}

*::-webkit-selection {
    color: var(--white-color);
    background: var(--link-color);
}

*::-webkit-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

*::-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

*:-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

*:-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

a, span, div a:hover, div a:active, div a:focus, button {
    text-decoration: none;
}

*::after, *::before, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body ul {
    margin: 0;
    padding: 0;
}

body a {
    outline: none;
    color: var(--text-color);
    display: inline-block;
    vertical-align: top;
}

body a:hover {
    color: var(--text-color);
}

* {
    outline: none !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


div input, div select, div textarea, div button {
    font-family: var(--font-family);
}

body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: var(--font-family);
    line-height: 1.2;
    color: var(--title-color);
    font-weight: 600;
    margin: 0 0 15px;
}

body h1 {
    font-size: 50px;
}

body h2 {
    font-size: 36px;
}

body h3 {
    font-size: 30px;
}

body h4 {
    font-size: 25px;
}

body h5 {
    font-size: 20px;
}

body h6 {
    font-size: 18px;
}

body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child {
    margin-bottom: 0;
}

div select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div select option {
    font-size: 13px;
    color: var(--text-color);
    padding: 2px 5px;
}

body img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

body p, body li {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 15px;
    padding: 0;
}

body li {
    font-size: 16px;
}

body p:empty,
body li:empty {
    margin: 0;
    line-height: 0;
}

body p:last-child,
body li:last-child {
    margin: 0;
}

p strong {
    font-weight: bold;
}

.a-left {
    text-align: left;
}

.a-right {
    text-align: right;
}

.a-center {
    text-align: center;
}

label em {
    color: var(--text-color);
    display: inline-block;
    font-style: normal;
    vertical-align: top;
    margin-left: 5px;
}

.hidden {
    display: none !important;
}

body .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
}

body .container .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/*Default-CSS close*/
/* Custom Css Start */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-title {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.sec-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.sec-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--link-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.col-3 {
    width: 33.33%;
}

.col-2 {
    width: 50%;
}

.v-center {
    align-items: center;
}

.h-center {
    justify-content: center;
}

.mb {
    margin-bottom: 30px;
}
/* Custom Css End*/
/* Header Section Start */
#header {
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}


#header .hr-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .hr-wrapper .hr-log img {
    width: 200px;
    height: auto;
}

/* Header Section End */

/* Hero Section Start */
.hero-sec {
    background: url('../images/banner_image.jpg') no-repeat center center;
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 1;
}
.hero-sec::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: -1;
}
.hero-sec h1 {
    color: var(--white-color);
}

/* Hero Section End */

/* Logo Section Start */
.logo-sec {
    padding: 150px 0;
    background-color: var(--title-color);
}

.logo-sec .ls-wrapper {
    width: 50%;
    margin: 0 auto;
}
.main-container {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
}
.texteffect-wrap{
    position: relative;
  }
  .texteffect-wrap:after {
      content: '<';
      display: block;
      position: absolute;
      left: -54px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 64px;
      font-weight: 700;
  }
  .texteffect-wrap:before {
      content: '>';
      display: block;
      position: absolute;
      right: -54px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 64px;
      font-weight: 700;
  }
  .typewriter-text {
    overflow: hidden;
    position: relative;
    width: 18em;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    font-size: 38px;
    white-space: nowrap;
  
    animation: typewriter 4s steps(44) 1s 1 normal both,
    blinkTextCursor 400ms steps(44) infinite normal;
  
  }
  
  
  @keyframes typewriter {
    from {
      width: 0;
    }
  
    to {
      width: 23em;
    }
  }
  
  @keyframes blinkTextCursor {
  
    from {
      border-right-color: rgba(255, 255, 255, 0.75);
    }
  
    to {
      border-right-color: transparent;
    }
  
  }

/* Logo Section End */

/* Product Section Start */
#product-sec {
    padding: 60px 0;
}

#product-sec .pb-card-wrapper {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
#product-sec .pb-card-wrapper img {
    transition: all .4s ease-in-out;
}
#product-sec .pb-card-wrapper:hover img {
    transform: scale(1.1);
}
#product-sec .pb-card-wrapper .po-image-content {
    padding: 0 20px 25px;
    background-color: var(--white-color);
    border-radius: 0 0 10px 10px;
}

#product-sec .pb-card-wrapper .po-header-image a {
    padding: 30px 0;
}


#product-sec .pb-card-wrapper .po-image-content h4 {
    font-weight: 600;
    transition: 0.3s;
    margin: 0 0 15px;
}

#product-sec .pb-card-wrapper .po-image-content h4 a {
    transition: 0.3s;
    color: inherit;
}

#product-sec .pb-card-wrapper .po-image-content p {
    font-size: 15px;
}

#product-sec .pb-card-wrapper .po-image-content h4:hover a {
    color: var(--link-color);
}

#product-sec .po-header-image {
    padding-top: 40px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

#product-sec .po-header-image a {
    width: 100%;
}

/* Product Section End */


/* ===============> Privacy Policy Page and Terms Of Service Page Start<================ */

#content-sec {
    padding: 60px 0;
}

#content-sec .cs-pd-top {
    padding-top: 30px;
}

#content-sec h4 {
    color: var(--privacy-page-h2);
    margin-bottom: 25px;
}


#content-sec .content-wrapper p>a {
    color: var(--link-color);
}

/* ===============> Privacy Policy Page and Terms Of Service Page End<================ */

/* Footer Section Start */
#footer {
    background-color: var(--bg-colot);
    padding: 20px 0;
}

#footer .ft-wrapper p {
    font-size: 16px;
}

#footer .ft-wrapper a {
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

#footer .ft-wrapper a:hover {
    color: var(--link-color);
}

#footer .ft-wrapper span {
    position: relative;
    margin-right: 10px;
}

/* Footer Section End */