:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #f5fbf3;
  --color-whiter-light:       #fafdf9;
  --color-black:              black;
  --color-grey:               #e1e9df;
  --color-primary:            #172D51;
  --color-secondary:          #61797d;
  --color-orange:             #f9b52e;
  --color-red:                #e63946;
  --color-red-light:          #fdeff0;
  --color-green:              #5cc184;
  --color-blue:               #1767fc;
  --color-blue-light:         #ceddff;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #7a7a7a;
  --color-border:             #d1d6dd;
}

.container {
  position: relative;
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
}

.top-bar {
  background-color: #F5F5F5;
  color: #005287;
  line-height: 25px;
  font-size: 13px;
  font-weight: 400;
}

.nav-btn {
  width: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
  z-index: 0;
  padding: 0;
  border: none;
  display: none;
}

@media only screen and (max-width: 991px) {
  .nav-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 575px) {
  .nav-btn {
    position: absolute;
    right: 20px;
    top: 7px;
  }
}

.nav-btn span {
  display: block;
  border-radius: 100px;
  height: 3px;
  background-color: var(--color-primary);
  margin-bottom: 4px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-btn span:last-child {
  margin-bottom: 0;
}

.nav-btn span:nth-child(2) {
  margin-left: 6px;
}

.nav-btn:hover span:nth-child(2) {
  margin-left: 0;
}

.nav-btn[aria-expanded="true"] span {
  height: 4px;
}

.nav-btn[aria-expanded="true"] span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}

.nav-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-btn[aria-expanded="true"] span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

.nav-btn.nav-ham {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  width: 49px;
  height: 49px;
  padding: 12px;
}

.nav-btn.nav-ham span {
  height: 4px;
}

.nav-btn.nav-ham span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.nav-btn.nav-ham span:nth-child(2) {
  opacity: 0;
}

.nav-btn.nav-ham span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

header.navbar {
  background: var(--color-white);
  border-bottom: 1px solid #EEEEEE;
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header.navbar .logo-section {
  border-bottom: 1px solid #EEEEEE;
  padding: 15px 0;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  header.navbar .logo-section {
    padding: 8px 0;
  }
}

header.navbar .logo-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 575px) {
  header.navbar .logo-section .nav-btn {
    margin-top: 11px;
  }
}

header.navbar .logo {
  max-width: 90px;
}

@media only screen and (max-width: 991px) {
  header.navbar .logo {
    max-width: 50px;
  }
}

@media only screen and (max-width: 575px) {
  header.navbar .logo {
    max-width: 50px;
    margin-right: auto;
  }
}

header.navbar .logo img {
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 992px) {
  header.navbar .header-nav {
    display: block !important;
  }
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav {
    position: fixed;
    z-index: 43;
    overflow-y: auto;
    overflow-x: hidden;
    top: 65px;
    left: 0;
    background: var(--color-white);
    bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media only screen and (min-width: 992px) {
  header.navbar .header-nav.collapse:not(.show) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

header.navbar .header-nav .header-bottom-navbar-top {
  padding: 10px 15px;
  background-color: var(--color-whiter);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 992px) {
  header.navbar .header-nav .header-bottom-navbar-top {
    display: none;
  }
}

header.navbar .header-nav .header-bottom-navbar-top .all-categories-text {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.navbar .header-nav .header-bottom-navbar-top .all-categories-text svg {
  margin-left: 6px;
}

header.navbar .header-nav .header-bottom-navbar-top .nav-btn {
  margin-left: 0;
}

@media only screen and (max-width: 575px) {
  header.navbar .header-nav .header-bottom-navbar-top .nav-btn {
    margin-top: 15px;
  }
}

header.navbar .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 15px;
    margin-bottom: 15px;
  }
}

header.navbar .header-nav ul li {
  list-style: none;
  margin-right: 25px;
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav ul li {
    margin: 0 0 10px;
    border-bottom: 1px solid var(--color-border);
  }
}

header.navbar .header-nav ul li a {
  line-height: 1.2;
  font-size: 16px;
  font-weight: 700;
  color: #313438;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav ul li a {
    line-height: 30px;
    padding-bottom: 10px;
  }
}

header.navbar .header-nav ul li a span {
  line-height: 45px;
}

header.navbar .header-nav ul li.dropdown .all-categories {
  position: relative;
  padding-right: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

header.navbar .header-nav ul li.dropdown .all-categories .arrow {
  width: 11px;
  height: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.navbar .header-nav ul li.dropdown .all-categories .arrow svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav ul li.dropdown .all-categories .arrow svg {
    display: initial;
  }
}

header.navbar .header-nav ul li.dropdown .all-categories.show .arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header.navbar .header-nav ul li.dropdown .all-categories:hover, header.navbar .header-nav ul li.dropdown .all-categories:focus, header.navbar .header-nav ul li.dropdown .all-categories:active {
  color: #005ea2;
}

header.navbar .header-nav ul li.dropdown .all-categories:hover .arrow svg path, header.navbar .header-nav ul li.dropdown .all-categories:focus .arrow svg path, header.navbar .header-nav ul li.dropdown .all-categories:active .arrow svg path {
  fill: #005ea2;
}

header.navbar .header-nav ul li.dropdown .dropdown-menu {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  background: #162e51;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  left: 0 !important;
  top: 100% !important;
  margin-top: 0 !important;
  z-index: 10;
  -webkit-transform: none !important;
          transform: none !important;
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav ul li.dropdown .dropdown-menu {
    max-height: 400px;
    overflow: auto;
    position: relative;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
  }
}

header.navbar .header-nav ul li.dropdown .dropdown-menu a {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: #fff;
}

header.navbar .header-nav ul li.dropdown .dropdown-menu a:hover, header.navbar .header-nav ul li.dropdown .dropdown-menu a:focus, header.navbar .header-nav ul li.dropdown .dropdown-menu a:active {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (min-width: 992px) {
  header.navbar .header-nav .header-search-section {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  header.navbar .header-nav .header-search-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header.navbar .search-main-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 0;
  min-height: 50px;
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area {
    margin-left: 20px;
    margin-right: 20px;
    min-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 575px) {
  header.navbar .search-main-area {
    margin: 0;
    width: 100%;
    margin-top: 10px;
  }
}

header.navbar .search-main-area .search-input-main, header.navbar .search-main-area .select-cities {
  border: 1px solid #D0D0D0;
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .search-input-main, header.navbar .search-main-area .select-cities {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .search-input-main .search-input, header.navbar .search-main-area .select-cities .search-input {
    height: 35px;
    font-size: 15px;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area .search-input-main {
    margin: 0;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .search-input-main svg {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities {
    width: 130px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area .select-cities {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities .cities-btn {
    height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area .select-cities .cities-btn {
    padding: 0;
    margin: 0;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities .cities-btn .text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities .cities-btn .cities-icon {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities .dropdown-menu {
    padding: 3px 7px;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area .select-cities .dropdown-menu {
    position: absolute !important;
    margin: 0;
  }
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .select-cities .dropdown-menu li {
    font-size: 14px;
  }
}

header.navbar .search-main-area .select-cities .dropdown-menu li a {
  font-size: 14px;
}

@media only screen and (max-width: 1199px) {
  header.navbar .search-main-area .search-btn {
    width: 40px;
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  header.navbar .search-main-area .search-btn {
    width: 37px;
    height: 37px;
  }
}

.header-search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 991px) {
  .header-search-section {
    display: none;
  }
}

.header-search-section .header-search-nav {
  margin-bottom: 10px;
  line-height: 19px;
  font-size: 16px;
  font-weight: 400;
  color: #005287;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .header-search-section .header-search-nav {
    font-size: 15px;
  }
}

.header-search-section .header-search-nav a {
  margin: 0 10px;
  color: #005287;
}

.header-search-section .header-searchinputs .header-search-input {
  border-color: #555B66;
  font-size: 20px;
  font-weight: 400;
  height: 55px;
  min-width: 400px;
}

@media only screen and (max-width: 991px) {
  .header-search-section .header-searchinputs .header-search-input {
    height: 45px;
  }
}

.header-search-section .header-searchinputs .header-search-btn {
  background-color: #0C60A0;
  width: 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 991px) {
  .header-search-section .header-searchinputs .header-search-btn {
    width: 60px;
  }
}

.header-search-section .header-searchinputs .header-search-btn:hover, .header-search-section .header-searchinputs .header-search-btn:focus, .header-search-section .header-searchinputs .header-search-btn:active {
  background-color: #1a4480;
}

@media only screen and (max-width: 991px) {
  .header-search-section .header-searchinputs .header-search-btn svg {
    width: 21px;
  }
}

.hero-sec {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 40px 0;
}

@media only screen and (max-width: 767px) {
  .hero-sec {
    padding: 20px 0;
  }
}

.hero-sec:after {
  content: '';
  background-color: #000;
  opacity: .77;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-sec .hero-title-sec {
  background-color: #172D51;
  padding: 32px;
  max-width: 566px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .hero-sec .hero-title-sec {
    max-width: 465px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .hero-title-sec {
    padding: 25px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .hero-sec .hero-title-sec {
    padding: 18px;
  }
}

.hero-sec .hero-title-sec h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  line-height: 63px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 991px) {
  .hero-sec .hero-title-sec h1 {
    font-size: 47px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .hero-title-sec h1 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .hero-sec .hero-title-sec h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.hero-sec .hero-title-sec p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: .6;
  line-height: 23px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
  .hero-sec .hero-title-sec p {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .hero-title-sec p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 575px) {
  .hero-sec .hero-title-sec p {
    font-size: 14px;
    line-height: 1.3;
  }
}

.hero-sec .hero-title-sec .hero-button {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  background-color: #0C60A0;
  border-radius: 7px;
  line-height: 70px;
  padding: 0 33px;
}

@media only screen and (max-width: 991px) {
  .hero-sec .hero-title-sec .hero-button {
    font-size: 21px;
    line-height: 60px;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .hero-title-sec .hero-button {
    font-size: 19px;
    line-height: 50px;
    padding: 0 25px;
  }
}

.hero-sec .hero-title-sec .hero-button:hover, .hero-sec .hero-title-sec .hero-button:focus, .hero-sec .hero-title-sec .hero-button:active {
  background-color: #1a4480;
}

.tagline-sec {
  background-color: #F9F8F8;
  padding: 65px 0;
}

@media only screen and (max-width: 767px) {
  .tagline-sec {
    padding: 45px 0;
  }
}

@media only screen and (max-width: 575px) {
  .tagline-sec {
    padding: 30px 0;
  }
}

.tagline-sec .tagline-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .tagline-sec .tagline-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.tagline-sec .tagline-inner h2 {
  width: 375px;
  margin-right: 115px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 55px;
  line-height: 63px;
  font-weight: 700;
  color: #313438;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .tagline-sec .tagline-inner h2 {
    width: 100%;
    font-size: 45px;
    line-height: 43px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .tagline-sec .tagline-inner h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}

.tagline-sec .tagline-inner p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
  font-size: 16px;
  font-weight: 400;
  color: #313438;
  line-height: 23px;
}

@media only screen and (max-width: 767px) {
  .tagline-sec .tagline-inner p {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 575px) {
  .tagline-sec .tagline-inner p {
    font-size: 14px;
    line-height: 1.3;
  }
}

.trusted-clients-sec {
  background-color: #172D51;
  padding: 53px 0 45px;
}

@media only screen and (max-width: 767px) {
  .trusted-clients-sec {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 575px) {
  .trusted-clients-sec {
    padding: 30px 0;
  }
}

.trusted-clients-sec h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 52px;
  margin-bottom: 54px;
}

@media only screen and (max-width: 767px) {
  .trusted-clients-sec h2 {
    font-size: 37px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .trusted-clients-sec h2 {
    font-size: 30px;
    margin-bottom: 23px;
  }
}

.trusted-clients-sec .clients-block {
  min-height: calc(100% - 25px);
  margin-bottom: 25px;
  background-color: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trusted-clients-sec .clients-block img {
  max-width: 100%;
  height: auto;
}

.section-call-to-action {
  padding: 60px 0 70px;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .section-call-to-action {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 575px) {
  .section-call-to-action {
    padding: 30px 0;
  }
}

.section-call-to-action h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 45px;
  font-weight: 700;
  color: #313438;
  line-height: 52px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .section-call-to-action h1 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .section-call-to-action h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.section-call-to-action p {
  font-size: 16px;
  font-weight: 400;
  color: #313438;
  line-height: 23px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .section-call-to-action p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .section-call-to-action p {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 22px;
  }
}

.section-call-to-action .section-call-btn {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  background-color: #0C60A0;
  border-radius: 7px;
  line-height: 70px;
  padding: 0 33px;
}

@media only screen and (max-width: 991px) {
  .section-call-to-action .section-call-btn {
    font-size: 21px;
    line-height: 60px;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-call-to-action .section-call-btn {
    font-size: 19px;
    line-height: 50px;
    padding: 0 25px;
  }
}

.section-call-to-action .section-call-btn:hover, .section-call-to-action .section-call-btn:focus, .section-call-to-action .section-call-btn:active {
  background-color: #1a4480;
  color: #fff;
}

.footer-top {
  background-color: #DFE1E2;
  padding: 22px 0;
}

.footer-top .footer-top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.footer-top .footer-top-logo-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-logo-sec {
    margin-bottom: 15px;
  }
}

.footer-top .footer-top-logo-sec .footer-top-logo {
  max-width: 90px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-logo-sec .footer-top-logo {
    max-width: 60px;
  }
}

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

.footer-top .footer-top-logo-sec .footer-top-logo-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
  font-size: 25px;
  font-weight: 700;
  color: #313438;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-logo-sec .footer-top-logo-text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-top .footer-top-logo-sec .footer-top-logo-text {
    font-size: 18px;
  }
}

.footer-top .footer-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.footer-top .footer-top-right .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-right .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.footer-top .footer-top-right .footer-social a {
  width: 35px;
  height: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  color: #313438;
  font-size: 20px;
}

.footer-top .footer-top-right .footer-social a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: #313438;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-top .footer-top-right .footer-social a:last-child {
  margin-right: 0;
}

.footer-top .footer-top-right .footer-social a:hover {
  color: #005287;
}

.footer-top .footer-top-right .footer-social a:hover:after {
  background-color: #005287;
}

.footer-top .footer-top-right .footer-contactor {
  color: #313438;
  font-size: 25px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
  .footer-top .footer-top-right .footer-contactor {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
}

.footer-top .footer-top-right .footer-contactor-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #313438;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}

@media only screen and (max-width: 575px) {
  .footer-top .footer-top-right .footer-contactor-bottom {
    font-size: 16px;
    line-height: 1.3;
  }
}

.footer-top .footer-top-right .footer-contactor-bottom span {
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-top-right .footer-contactor-bottom span {
    margin-left: 0;
    margin-right: 25px;
  }
}

footer {
  background-color: #172D51;
  padding: 20px 0;
}

footer .footer-logo-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
}

@media only screen and (max-width: 575px) {
  footer .footer-logo-sec {
    margin-bottom: 15px;
  }
}

footer .footer-logo-sec .footer-logo {
  max-width: 47px;
  margin-right: 15px;
}

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

footer .footer-logo-sec .footer-logo-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

footer .footer-logo-sec .footer-logo-text .footer-web-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3px;
  color: #fff;
}

footer .footer-logo-sec .footer-logo-text .footer-web-link a {
  color: #fff;
}

footer .footer-logo-sec .footer-logo-text .footer-web-link a:hover, footer .footer-logo-sec .footer-logo-text .footer-web-link a:focus, footer .footer-logo-sec .footer-logo-text .footer-web-link a:active {
  text-decoration: underline;
}

footer .footer-logo-sec .footer-logo-text .footer-web-offi {
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  color: #fff;
}

@media only screen and (max-width: 575px) {
  footer .footer-logo-sec .footer-logo-text .footer-web-offi {
    font-size: 17px;
    line-height: 1.4;
  }
}

footer .footer-logo-sec .footer-logo-text .footer-web-offi a {
  color: #fff;
  text-decoration: underline;
}

footer .footer-nav {
  max-width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
  footer .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 15px;
  }
}

footer .footer-nav a {
  width: 25%;
  float: left;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: .44;
  line-height: 32px;
}

@media only screen and (max-width: 575px) {
  footer .footer-nav a {
    width: 100%;
    line-height: 28px;
  }
}

footer .footer-nav a:hover, footer .footer-nav a:focus, footer .footer-nav a:active {
  opacity: 1;
  color: #fff;
}

footer .footer-lookingfor {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}

@media only screen and (max-width: 575px) {
  footer .footer-lookingfor {
    line-height: 1.3;
    font-size: 15px;
  }
}

footer .footer-lookingfor a {
  color: #fff;
  text-decoration: underline;
}

:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #f5fbf3;
  --color-whiter-light:       #fafdf9;
  --color-black:              black;
  --color-grey:               #e1e9df;
  --color-primary:            #172D51;
  --color-secondary:          #61797d;
  --color-orange:             #f9b52e;
  --color-red:                #e63946;
  --color-red-light:          #fdeff0;
  --color-green:              #5cc184;
  --color-blue:               #1767fc;
  --color-blue-light:         #ceddff;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #7a7a7a;
  --color-border:             #d1d6dd;
}

.custom--btn {
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.custom--btn.btn__light {
  background: var(--color-white);
  color: var(--color-primary);
}

.custom--btn.btn__light:hover, .custom--btn.btn__light:focus, .custom--btn.btn__light:active {
  opacity: .7;
  background: var(--color-white);
  color: var(--color-primary);
}

.custom--btn:hover, .custom--btn:focus, .custom--btn:active {
  background: var(--color-white);
  color: var(--color-primary-1);
}

.custom--btn:hover svg path, .custom--btn:focus svg path, .custom--btn:active svg path {
  fill: var(--color-white);
}

.custom--btn.btn__bordered {
  border: 2px solid var(--color-primary);
  background: none;
  color: var(--color-primary);
}

.custom--btn.btn__bordered:hover, .custom--btn.btn__bordered:focus, .custom--btn.btn__bordered:active {
  background: var(--color-primary);
  color: var(--color-white);
}

.custom--btn.btn__bordered:hover svg path, .custom--btn.btn__bordered:focus svg path, .custom--btn.btn__bordered:active svg path {
  fill: var(--color-white);
}

.custom--btn.btn__bordered svg {
  margin-right: 6px;
}

.custom--btn.dark-hover:hover, .custom--btn.dark-hover:focus, .custom--btn.dark-hover:active {
  background: var(--color-secondary);
  color: var(--color-white);
}

.custom--btn.dark-hover:hover svg path, .custom--btn.dark-hover:focus svg path, .custom--btn.dark-hover:active svg path {
  fill: var(--color-white);
}

.custom--btn.red {
  background: var(--color-red);
  color: var(--color-white);
}

.custom--btn.red:hover, .custom--btn.red:focus, .custom--btn.red:active {
  background: var(--color-red-light);
  color: var(--color-red);
  border-color: var(--color-red);
}

.custom--btn.red:hover svg path, .custom--btn.red:focus svg path, .custom--btn.red:active svg path {
  fill: var(--color-red);
}

.button__sm {
  font-weight: 500;
  padding: 0 12px;
  line-height: 30px;
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .button__sm {
    padding: 0 10px;
    line-height: 28px;
    font-size: 14px;
  }
}

.button__md {
  padding: 0 25px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .button__md {
    padding: 0 17px;
    line-height: 35px;
    font-size: 14px;
  }
}

.button__lg {
  padding: 0 36px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .button__lg {
    padding: 0 20px;
    line-height: 40px;
    font-size: 16px;
  }
}

.button__xl {
  font-size: 24px;
  font-weight: 400;
  padding: 0 60px;
  line-height: 65px;
}

@media only screen and (max-width: 991px) {
  .button__xl {
    font-size: 18px;
    padding: 0 30px;
    line-height: 45px;
  }
}

.text--md {
  font-size: 14px;
  font-weight: 500;
}

.text--lg {
  font-size: 16px;
  font-weight: 700;
}

.text--llg {
  font-size: 18px;
  font-weight: 700;
}

.text--xl {
  font-size: 22px;
  font-weight: 700;
}

.box-rotate {
  width: 20px;
  height: 3px;
  background-color: var(--color-red);
}

.box-rotate.small {
  width: 10px;
  height: 2px;
}

.btn-block {
  width: 100%;
}

:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #f5fbf3;
  --color-whiter-light:       #fafdf9;
  --color-black:              black;
  --color-grey:               #e1e9df;
  --color-primary:            #172D51;
  --color-secondary:          #61797d;
  --color-orange:             #f9b52e;
  --color-red:                #e63946;
  --color-red-light:          #fdeff0;
  --color-green:              #5cc184;
  --color-blue:               #1767fc;
  --color-blue-light:         #ceddff;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #7a7a7a;
  --color-border:             #d1d6dd;
}

*, body {
  font-family: var(--font-family);
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--color-white);
  font-size: 14px;
}

body, p, form, input, h1, h2, h3, h4, h5, h6, p, form, ul, li, ol, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  font-family: var(--font-family);
  color: var(--color-primary);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-family);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #172D51;
}

button, a, input, textarea {
  outline: 0 !important;
}

/* Margin */
.m-all-0 {
  margin: 0px !important;
}

.m-all-10 {
  margin: 10px !important;
}

.m-all-20 {
  margin: 20px !important;
}

.m-all-30 {
  margin: 30px !important;
}

.m-all-40 {
  margin: 40px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-l-1 {
  margin-left: 1px !important;
}

.m-l-2 {
  margin-left: 2px !important;
}

.m-l-3 {
  margin-left: 3px !important;
}

.m-l-4 {
  margin-left: 4px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-6 {
  margin-left: 6px !important;
}

.m-l-7 {
  margin-left: 7px !important;
}

.m-l-8 {
  margin-left: 8px !important;
}

.m-l-9 {
  margin-left: 9px !important;
}

.m-r-1 {
  margin-right: 1px !important;
}

.m-r-2 {
  margin-right: 2px !important;
}

.m-r-3 {
  margin-right: 3px !important;
}

.m-r-4 {
  margin-right: 4px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-6 {
  margin-right: 6px !important;
}

.m-r-7 {
  margin-right: 7px !important;
}

.m-r-8 {
  margin-right: 8px !important;
}

.m-r-9 {
  margin-right: 9px !important;
}

.m-t-1 {
  margin-top: 1px !important;
}

.m-t-2 {
  margin-top: 2px !important;
}

.m-t-3 {
  margin-top: 3px !important;
}

.m-t-4 {
  margin-top: 4px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-6 {
  margin-top: 6px !important;
}

.m-t-7 {
  margin-top: 7px !important;
}

.m-t-8 {
  margin-top: 8px !important;
}

.m-t-9 {
  margin-top: 9px !important;
}

.m-b-1 {
  margin-bottom: 1px !important;
}

.m-b-2 {
  margin-bottom: 2px !important;
}

.m-b-3 {
  margin-bottom: 3px !important;
}

.m-b-4 {
  margin-bottom: 4px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-6 {
  margin-bottom: 6px !important;
}

.m-b-7 {
  margin-bottom: 7px !important;
}

.m-b-8 {
  margin-bottom: 8px !important;
}

.m-b-9 {
  margin-bottom: 9px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-l-50 {
  margin-left: 40px !important;
}

.m-r-50 {
  margin-right: 40px !important;
}

.m-t-50 {
  margin-top: 40px !important;
}

.m-b-50 {
  margin-bottom: 40px !important;
}

/* Padding */
.p-all-0 {
  padding: 0px !important;
}

.p-all-10 {
  padding: 10px !important;
}

.p-all-20 {
  padding: 20px !important;
}

.p-all-30 {
  padding: 30px !important;
}

.p-all-40 {
  padding: 40px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-l-1 {
  padding-left: 1px !important;
}

.p-l-2 {
  padding-left: 2px !important;
}

.p-l-3 {
  padding-left: 3px !important;
}

.p-l-4 {
  padding-left: 4px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-l-6 {
  padding-left: 6px !important;
}

.p-l-7 {
  padding-left: 7px !important;
}

.p-l-8 {
  padding-left: 8px !important;
}

.p-l-9 {
  padding-left: 9px !important;
}

.p-r-1 {
  padding-right: 1px !important;
}

.p-r-2 {
  padding-right: 2px !important;
}

.p-r-3 {
  padding-right: 3px !important;
}

.p-r-4 {
  padding-right: 4px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-r-6 {
  padding-right: 6px !important;
}

.p-r-7 {
  padding-right: 7px !important;
}

.p-r-8 {
  padding-right: 8px !important;
}

.p-r-9 {
  padding-right: 9px !important;
}

.p-t-1 {
  padding-top: 1px !important;
}

.p-t-2 {
  padding-top: 2px !important;
}

.p-t-3 {
  padding-top: 3px !important;
}

.p-t-4 {
  padding-top: 4px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-t-6 {
  padding-top: 6px !important;
}

.p-t-7 {
  padding-top: 7px !important;
}

.p-t-8 {
  padding-top: 8px !important;
}

.p-t-9 {
  padding-top: 9px !important;
}

.p-b-1 {
  padding-bottom: 1px !important;
}

.p-b-2 {
  padding-bottom: 2px !important;
}

.p-b-3 {
  padding-bottom: 3px !important;
}

.p-b-4 {
  padding-bottom: 4px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-b-6 {
  padding-bottom: 6px !important;
}

.p-b-7 {
  padding-bottom: 7px !important;
}

.p-b-8 {
  padding-bottom: 8px !important;
}

.p-b-9 {
  padding-bottom: 9px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.border-left-none {
  border-left: none !important;
}

.border-right-none {
  border-right: none !important;
}

.border-top-none {
  border-top: none !important;
}

.border-bottom-none {
  border-bottom: none !important;
}

.border-all-none {
  border: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.form-control, .btn.focus, .btn:focus, .custom-select:focus, .form-control:focus, .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

label {
  color: var(--color-secondary);
  font-size: 15px;
  margin-bottom: 5px;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.form-check .form-check-input {
  width: 16px;
  height: 16px;
  background-color: var(--color-grey);
  border-color: var(--color-grey);
  margin: 0 14px 0 0;
}

.form-check .form-check-input[type=checkbox] {
  border-radius: 4px;
}

.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check .form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.form-check .form-check-input:focus {
  border-color: var(--color-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-check .form-check-input:checked {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.form-check .form-check-input:checked[type=checkbox] {
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='Group_440' data-name='Group 440' transform='translate(-322 -367)'%3E%3Cg id='check' transform='translate(313.727 358.859)'%3E%3Cpath id='Path_662' data-name='Path 662' d='M17.762,10.956A.934.934,0,1,1,19.1,12.264l-4.972,6.215a.934.934,0,0,1-1.345.025l-3.295-3.3a.934.934,0,1,1,1.32-1.32l2.608,2.607,4.325-5.511a.294.294,0,0,1,.025-.027Z' transform='translate(0 0)' fill='%23fff' stroke='%23fff' stroke-width='1' fill-rule='evenodd'/%3E%3C/g%3E%3Crect id='Rectangle_77' data-name='Rectangle 77' width='12' height='12' transform='translate(322 367)' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check .form-check-input[type=checkbox]:indeterminate {
  background-color: var(--color-red);
  border-color: var(--color-red);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check label {
  margin-bottom: 0;
}

.form-check-input:focus ~ .form-check-label:before, .form-check-input:checked, .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group {
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .form-group {
    margin-bottom: 12px;
  }
}

.custom-input {
  height: 45px;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: var(--color-primary);
  background-color: var(--color-white);
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

@media only screen and (max-width: 991px) {
  .custom-input {
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.custom-input.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:focus, .custom-input:active {
  background-color: var(--color-white);
  border-color: var(--color-red);
  color: var(--color-primary);
}

.custom-textarea {
  font-weight: 400;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: var(--color-primary);
  background-color: var(--color-white);
  resize: none;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

@media only screen and (max-width: 991px) {
  .custom-textarea {
    padding: 9px 12px;
    font-size: 14px;
  }
}

.custom-textarea.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:focus, .custom-textarea:active {
  background-color: var(--color-white);
  border-color: var(--color-red);
  color: var(--color-primary);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.position-relative {
  position: relative;
}

.img-responsivee {
  max-width: 100%;
  height: auto;
}

.check-color {
  fill: var(--color-white);
}

.shadow-sm {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg-invert {
  -webkit-box-shadow: 0 -20px 25px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -20px 25px rgba(0, 0, 0, 0.1) !important;
}

.text-shadow {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15) !important;
}

.bg--black {
  background: var(--color-darken);
}

.color--black {
  color: var(--color-darken);
}

.color--black:hover, .color--black:focus {
  color: var(--color-darken);
}

.color--red {
  color: var(--color-red);
}

.bg--red {
  background: var(--color-red);
}

.bg--white {
  background: var(--color-white);
}

.color--white {
  color: var(--color-white);
}

.color--white:hover, .color--white:focus {
  color: var(--color-white);
}

.bg--orange {
  background: var(--color-orange);
}

.color--orange {
  color: var(--color-orange);
}

.color--orange:hover, .color--orange:focus {
  color: var(--color-orange);
}

.bg--light-grey {
  background: var(--color-darken);
}

.color--light-grey {
  color: var(--color-darken);
}

.color--light-grey:hover, .color--light-grey:focus {
  color: var(--color-darken);
}

svg {
  vertical-align: initial;
}

.fill--white {
  fill: var(--color-white);
}

.fill--black {
  fill: var(--color-darken);
}

.description {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-darken);
  line-height: 29px;
}

@media only screen and (max-width: 1149px) {
  .description {
    font-size: 13px;
    line-height: 20px;
  }
}

.z-index-1 {
  z-index: 1;
}

.dropdown-menu-right {
  right: 0 !important;
  left: auto !important;
}

svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

hr {
  background-color: var(--color-border);
  margin: 30px 0;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  hr {
    margin: 20px 0;
  }
}

hr.small-marg {
  margin: 15px 0;
}

@media only screen and (max-width: 991px) {
  hr.small-marg {
    margin: 10px 0;
  }
}

@media only screen and (min-width: 992px) {
  hr.mobile {
    display: none;
  }
}

.full-height {
  height: 100vh;
}

.quantity {
  position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type=number] {
  -moz-appearance: textfield;
}

.quantity input {
  width: 100%;
  height: 45px;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: var(--color-primary);
  background-color: var(--color-white);
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

@media only screen and (max-width: 639px) {
  .quantity input {
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.quantity input.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.quantity input:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.quantity input::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.quantity input:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.quantity input::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.quantity input:focus, .quantity input:active {
  outline: 0;
  background-color: var(--color-white);
  border-color: var(--color-red);
  color: var(--color-primary);
}

.quantity-nav {
  float: left;
  height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity-nav .quantity-button {
  position: relative;
  cursor: pointer;
  border: none;
  width: 30px;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 40%;
}

.quantity-nav .quantity-button.quantity-up {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.006' height='6.254' viewBox='0 0 10.006 6.254'%3E%3Cpath id='arrow-left' d='M1.251,0,0,1.251,3.752,5,0,8.755l1.251,1.251,5-5Z' transform='translate(0 6.254) rotate(-90)' fill='%231d3557' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
}

.quantity-nav .quantity-button.quantity-down {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.006' height='6.254' viewBox='0 0 10.006 6.254'%3E%3Cpath id='arrow-left' d='M1.251,10.006,0,8.755,3.752,5,0,1.251,1.251,0l5,5Z' transform='translate(10.006) rotate(90)' fill='%231d3557' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
}

.line-height-1 {
  line-height: 1;
}

.paragraph {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .paragraph {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.paragraph.line-height {
  line-height: 1.2;
}

.nav-overflow {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */