@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
:root {
  --primaryColor: #02d5c9;
}

html {
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.txt--primary {
  color: var(--primaryColor);
}
/* COMPONNTS */

.sectionHeader {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.para {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
}

.header__line {
  height: 4px;
  width: 50px;
  background-color: #545454;
}

.header__line.header__line--primary {
  background-color: var(--primaryColor);
}

.button {
  display: inline-block;
  text-decoration: none;
  line-height: 46px;
  border: none;
  border-radius: 3px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 4px 6px 17.82px 0.18px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease-in-out;
}

.button:hover {
  text-decoration: none;
}

.button.button--yellow {
  color: #fff;
  background-color: #f08410;
}

.button.button--yellow:hover {
  color: #000;
  background-color: #fff;
}

.button.button--white {
  color: #000;
  background-color: #fff;
}

.button.button--white:hover {
  color: #fff;
  background-color: #f08410;
}

.button.button--gray {
  color: #fff;
  background-color: #3e4444;
}

.button.button--gray:hover {
  background-color: #f08410;
}
/* END COMPONNTS */
/* Banner */

.mainNav.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  padding-right: 25px;
  transition: all 0.2s ease-in-out;
}

.navbar-defaul {
  transition: all 500ms ease-in-out;
}

.navbar-default.navbar-shrink {
  -webkit-box-shadow: 0px 4px 7px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 7px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 4px 7px -5px rgba(0, 0, 0, 0.75);
  background: #15171b;
  border-bottom: 4px solid #09c7bc;
  padding: 0px 0;
  transition: all 500ms ease-in-out;
}

.mainNav {
  position: relative;
  width: 100%;
  z-index: 99999;
}

.mainNav.navbar-light .navbar-nav .nav-link:hover {
  color: #f08410;
}

.mainNav.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: #f08410;
}

.mainNav .navbar-toggler {
  border: none;
}

.mainNav .navbar-toggler:focus {
  outline: none;
}

.mainNav .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mainNav .button {
  display: inline-block;
  text-decoration: none;
  line-height: 46px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  color: #fff;
  background-color: #f08410;
  font-size: 15px;
  box-shadow: 4px 6px 17.82px 0.18px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease-in-out;
}

.banner {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url(../images/digital-marketing-images/banner_bg.png) 0 0 / cover
    no-repeat;
}

.mainNav.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
  padding-right: 25px;
  transition: all 0.2s ease-in-out;
}

.mainNav.navbar-light .navbar-nav .nav-link:hover {
  color: #f08410;
}

.mainNav.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: #f08410;
  font-weight: 500;
}

.mainNav .navbar-toggler {
  border: none;
}

.mainNav .navbar-toggler:focus {
  outline: none;
}

.mainNav .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.bannerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.bannerHeader {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 50px;
  padding-bottom: 30px;
  position: relative;
}

.bannerHeader::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background-color: var(--primaryColor);
}

.bannerSubheder {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  margin-bottom: 55px;
}

.bannerSubheder .line {
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  width: 64px;
  background-color: var(--primaryColor);
  margin-right: 10px;
}

.bannerBottomImage {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
}

.rocket {
  position: absolute;
  right: 24.3%;
  bottom: 22%;
}

.dropdown-item {
  font-family: "Lato", sans-serif;
}
/* End Banner */
/* Brand */

.brand {
  padding: 75px 0;
  background-image: url("../images/digital-marketing-images/digtal_marketing_laptop.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  background-position-y: bottom;
}

.quality__text {
  font-size: 22px;
  font-weight: 500;
}
/* End Brand */
/* Roadmap */

.roadmap {
  padding: 70px 0;
  background-color: #f9fafc;
}

.roadmapContent {
  padding-top: 60px;
}

.roadmapContent--row {
  margin-bottom: 60px;
}

.roadmapContent--row:last-of-type {
  margin-bottom: 0;
}

.roadmap__image {
  border-radius: 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.36);
}

.roadmap__image img {
  border-radius: 10px;
}

.roadmapNumber {
  font-size: 30px;
  font-weight: 300;
  color: var(--primaryColor);
  margin-bottom: 40px;
}

.roadmapNumber .roadmapNumber__line {
  display: inline-block;
  width: 170px;
  height: 1px;
  background-color: #b4b4b4;
  vertical-align: middle;
}

.roadmapHeader {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
}
/* End Roadmap */
/* Get Noticed */

.getNoticed {
  padding: 70px 0;
  background: url(../images/digital-marketing-images/get_noticed_bg.png) 0 0 /
    cover no-repeat;
  color: #fff;
}

.getNoticed__header {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 35px;
}

.getNoticed__subheader {
  font-size: 15px;
  line-height: 1.6;
}
/* End Get Noticed */
/* Contact */

.contact {
  background: url(../images/digital-marketing-images/contact-background-img.jpg)
    no-repeat center;
  background-size: cover;
  padding: 150px 0 130px;
  margin: 0;
}

.contact .lt-site h3 {
  font-size: 39px;
  line-height: 50px;
  color: #d7d7d8;
  padding: 0 0 48px;
  margin: 0 0 110px;
  position: relative;
  font-weight: 500;
}

.contact .lt-site h3:before {
  content: "";
  width: 76px;
  height: 6px;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #09c7bc;
  padding: 0;
  margin: 0;
}

.contact .lt-site h4 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 27px;
  color: #fff;
  padding: 0 0 35px;
  margin: 0;
}

.contact .lt-site p {
  font-size: 15px;
  font-family: "Lato", sans-serif;
  line-height: 24px;
  color: #fff;
  padding: 0 0 17px;
  margin: 0;
}

.contact .lt-site p span {
  display: block;
}

.contact .lt-site h5 {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 17px;
  color: #fff;
  padding: 0;
  margin: 0;
}

.contact .lt-site h5 a {
  color: #00e3fe;
}

.contact .rt-site {
  display: flex;
  z-index: 1;
  min-height: 465px;
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 30px 30px 50px 30px;
  margin: 0;
}

.contact .rt-site .left-text {
  font-family: "Lato", sans-serif;
  position: relative;
  width: 45%;
  margin: 0 35px 0 0;
}

.contact .rt-site .left-text:before {
  content: "";
  width: 301px;
  height: 448px;
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/digital-marketing-images/contact-form-img.png)
    no-repeat center;
  padding: 0;
  margin: 0;
  z-index: -1;
}

.contact .rt-site .left-text h3 {
  font-weight: 300;
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: #fff;
  padding: 0;
  margin: 0;
}

.contact .rt-site .left-text h3 span.brek1 {
  display: block;
  font-size: 28px;
  line-height: 33px;
  color: #fff;
  /* padding: 7px 0; */
  margin: 0;
}

.contact .rt-site .left-text h3 span.brek2 {
  font-weight: 700;
  display: block;
  font-size: 42px;
}

.contact .rt-site .left-text h4 {
  text-align: center;
  color: #fff000;
  font-size: 78px;
  line-height: 80px;
  padding: 0 0 20px 0;
  margin: 0;
  font-weight: 900;
}

.contact .rt-site .left-text h5 {
  width: 200px;
  background: #fff;
  font-size: 24px;
  line-height: 26px;
  color: #005d7b;
  padding: 10px 16px;
  margin: 0 auto;
  font-weight: 300;
}

.contact .rt-site .left-text h5 span {
  font-weight: 900;
  font-size: 37px;
  line-height: 40px;
  text-align: center;
}

.contact .rt-site .right-text {
  width: 50%;
}

.contact .rt-site .right-text h4 {
  font-size: 25px;
  line-height: 27px;
  color: #252525;
  padding: 0 0 30px;
  margin: 0;
  font-weight: 700;
}

.contact .rt-site .right-text h4 span {
  width: 36px;
  height: 3px;
  display: inline-block;
  vertical-align: middle;
  background: #09c7bc;
  margin: 0 30px 0 0;
}

.contact .rt-site .right-text .form-control {
  min-height: 45px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  color: #252525;
  margin-top: 5px;
}

.contact .rt-site .right-text textarea.form-control {
  min-height: 100px;
  resize: none;
  margin-bottom: 5px;
}

.contact .rt-site .right-text .sub-btn {
  border: none;
  border-radius: 5px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  background: #09c7bc;
  padding: 16px 23px;
  margin: 0;
}
/* End Contact */
/* Footer */

footer {
  font: 400 14px/20px "Open Sans", sans-serif;
  color: #fff;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding-top: 30px;
}

footer.sample-footer-page {
  background: #fff;
  border-top: solid 2px #46bbe4;
  color: rgba(0, 0, 0, 0.6);
  clip-path: none;
  padding-top: 0;
}

.footer-logo {
  width: 180px;
  display: block;
}

.footer-logo img {
  max-width: 100%;
  width: auto;
}

footer p {
  margin-bottom: 1rem;
}

.footer-icon-box {
  position: relative;
}

.footer-icon-box ul {
  display: flex;
  padding: 0;
  margin-bottom: 1rem;
}

.footer-icon-box ul li {
  float: left;
  padding-right: 24px;
}

.footer-icon-box ul li a {
  font-size: 18px;
  color: #fff;
  display: block;
}

footer.sample-footer-page .footer-icon-box ul li a {
  color: rgba(0, 0, 0, 0.6);
}

footer h2 {
  font: 700 18px/24px "Lato", sans-serif;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 0.5rem;
}

footer h2:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  content: "";
  background: #fff;
}

footer.sample-footer-page h2:before {
  background: #04a7e0;
}

.footer-menu {
  position: relative;
}

.footer-menu ul {
  padding: 6px 0 0;
  margin-bottom: 1rem;
}

.footer-menu ul li a {
  font: 400 14px/20px "Open Sans", sans-serif;
  color: #fff;
  padding-left: 28px;
  background: url(//klizos.com/wp-content/themes/klizos/public/css/../images/f-menu-bg.png)
    no-repeat 0 50%;
  display: inline-block;
  margin: 10px 0 0;
}

footer.sample-footer-page .footer-menu ul li a {
  background: 0 0;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 0;
}

.ft-mail-box a {
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 1px #fff;
  color: #fff;
}

footer.sample-footer-page .ft-mail-box a {
  color: #04a7e0;
  border-color: #46bbe4;
  font-weight: 400;
}

.copy-right-sac {
  border-top: solid 1px rgba(255, 255, 255, 0.4);
  padding: 15px;
  font: 400 12px/20px "Open Sans", sans-serif;
}

footer.sample-footer-page .copy-right-sac {
  border-color: rgba(0, 0, 0, 0.1);
}
/* End Footer */
/* Media queries */

@media (max-width: 1441px) {
  .rocket {
    right: 22.3%;
    bottom: 11%;
    width: 200px;
  }
  .rocket img {
    max-width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .mainNav.navbar-light .navbar-nav .nav-link {
    padding: 0 12px 0 0;
    font-size: 13px;
  }
  .bannerBottomImage {
    width: 70%;
  }
  .rocket {
    display: none;
  }
  .brand {
    padding: 50px 0;
    background-position-x: 300px;
  }
}

@media (max-width: 991.98px) {
  .mainNav .navbar-nav {
    /* background-color: #074248; */
    padding: 20px;
    position: relative;
    z-index: 999;
  }
  .mainNav.navbar-light .navbar-nav .nav-link {
    padding-right: 0;
    padding-bottom: 15px;
  }
  .bannerHeader {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .bannerSubheder {
    font-size: 16px;
    margin-bottom: 40px;
  }
 
  .getNoticed {
    padding: 50px 0;
  }
  .getNoticed__header {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .sectionHeader {
    font-size: 25px;
  }
  .para {
    font-size: 12px;
  }
  .roadmap {
    padding: 50px 0;
    overflow-x: hidden;
  }
  .contact {
    padding: 80px 0;
  }
  .lt-site {
    margin-bottom: 80px;
  }
  .contact .lt-site h3 {
    margin-bottom: 40px;
  }
  .ft-mail-box {
    font-size: 11px;
  }
}

@media (max-width: 767.98px) {
  .navbar-default .nav-block .sidenav.w-22 {
    padding-top: 100px;
  }
  .bannerBottomImage {
    display: none;
  }
  .rocket {
    display: none;
  }
  .roadmapContent {
    padding-top: 30px;
  }
  .roadmapNumber {
    margin-bottom: 30px;
  }
  .roadmapHeader {
    margin-bottom: 30px;
  }
  .quality__text {
    font-size: 17px;
  }
  .not__convinced {
    padding-top: 40px;
  }
  .not__convinced__content::after {
    content: none;
  }
  .notConvinced__text {
    font-size: 25px;
  }
  .notConvinced__para {
    font-size: 12px;
  }
  .contact .rt-site {
    flex-direction: column;
  }
  .contact .rt-site .left-text {
    width: auto;
  }
  .contact .rt-site .right-text {
    width: 100%;
    padding-top: 65px;
  }
  .brand {
    background-image: none;
  }
}

@media (max-width: 575.98px) {
  .copy-right h2 {
    display: block;
    text-align: center;
  }
  .copy-right ul {
    margin-top: 30px;
    text-align: center;
  }
  .logobox__text {
    height: 212px;
  }
}
/* @media (max-height: 800px) {
  .rocket {
    display: none;
  }
} */
/* End Media queries */

.errorSize {
  font-size: 12px;
}

.bottomSectionIndicator {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  width: 28px;
  height: 42px;
  padding: 0;
  margin: -114px auto;
}
.banner a span {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  background: url(../images/app-development-images/mouse-move-arrow-icon.png)
    no-repeat center;
  width: 22px;
  height: 39px;
  padding: 0;
  margin: 0 auto;
  animation: mymove 1s infinite;
  animation-iteration-count: infinite;
}
@keyframes mymove {
  from {
    bottom: -15px;
  }
  to {
    bottom: -25px;
  }
}
