@font-face {
  src: url(../fonts/RobotoCondensed-Bold.ttf);
  src: url(../fonts/RobotoCondensed-Regular.ttf);
}

/* variables
/* -------------------------------------------------- */
:root {
  --primary-bg-color: #5ab9c5;
  --success-bg-color: #7dba32;
  --warning-bg-color: #aa9a8d;
  --danger-bg-color: #e43760;
  --light-bg-color: #f4f4f4;
}

/* main css
/* -------------------------------------------------- */

body {
  font-size: 16px;
  color: black;
}

* {
   font-family: 'Roboto Condensed', sans-serif;
}

small {
  font-size: 12px;
  color: #004b64;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
h1 {
  font-size: 34px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
h2 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
h2 .big{
  font-size: 44px;
}
h3 {
  font-size: 14px;
  font-weight: 400;
  color: #4f4f4f;
}

@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }
}

p {
  margin-top: 20px;
  margin-bottom: 10px;

}
p.lead {
  font-size: 20px;
  font-weight: 400;
}

hr {
  width: 835px;
  max-width: 100%;
  border-top: 2px solid rgba(0,0,0,.08);
}
hr.hr-dash {
  position: relative;
}
hr.hr-dash:before {
  content: "";
  position: absolute;
  top: -2px;
  height: 4px;
  left: 0;
  right: 0;
  width: 56px;
  background: #00bdca;
  margin: 0 auto;
}


hr.hr-dash:after {
  content: "";
  position: absolute;
  top: -2px;
  height: 4px;
  left: 0;
  right: 0;
  width: 30px;
  background: #fff;
  margin: 0 auto;
}

ul {
  padding: 0px 27px;
  margin: 0px;
  list-style-type: none;
  position: relative;
}

li {
  position: relative;
}

li.custom-li1:before {
  position: absolute;
  background-color: #aa9a8d;
  width: 5px;
  height: 5px;
  left: -30px;
  top: 10px;
  content: "";

}

strong {
  font-weight: 600;
}

.border {
  border-width: 2px !important;
}

.form-control {
  border: 0px solid #e8e8e8;
  border-radius: 0;
}

.mt-45, .my-45 {
  margin-top: 2rem!important;
}
.mt-6, .my-6 {
  margin-top: 4rem!important;
}
.mt-7, .my-7 {
  margin-top: 5rem!important;
}
.mt-8, .my-8 {
  margin-top: 6rem!important;
}
.p-45 {
  padding: 2rem!important;
}
.p-6 {
  padding: 4rem!important;
}
.p-7 {
  padding: 5rem!important;
}
.p-8 {
  padding: 6rem!important;
}

@media (min-width: 576px) {
  .sm-text-left {
    text-align: left !important;
  }
  .sm-float-right {
    float: right !important;
  }

}

@media (max-width: 576px) { 
  .userdata-align {
    text-align: center !important;
  }
  .option-container2 {
    margin-left: 0px !important;
  }
}

@media (min-width: 992px) {
  .lg-order-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .p-lg-45 {
    padding: 2rem!important;
  }
  .p-lg-6 {
    padding: 4rem!important;
  }
  .p-lg-7 {
    padding: 5rem!important;
  }
  .p-lg-8 {
    padding: 6rem!important;
  }
}

@media (min-width: 1200px) {
  .p-xl-45 {
    padding: 2rem!important;
  }
  .p-xl-6 {
    padding: 4rem!important;
  }
  .p-xl-7 {
    padding: 5rem!important;
  }
  .p-xl-8 {
    padding: 6rem!important;
  }
}

section {
  padding: 40px 0;
}

/* colors */
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  color: #aa9a8d;
}

.btn {
  border-radius: 0;
  color: #fff;
  font-weight: 500;
  padding: 11px 55px;
}

.btn:hover {
  opacity: 0.8;
}

.btn-shadow {
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}

.bg-primary,
.btn-primary,
.bg-boxed.bg-primary:before {
  background: var(--primary-bg-color) !important;
  background-color: var(--primary-bg-color) !important;
  border-color: var(--primary-bg-color);
  color: #fff;
}
.btn-primary:hover {
  border-color: var(--primary-bg-color);
}
.bg-boxed.bg-primary,
.bg-boxed.bg-primary small {
  color: #fff;
}
.bg-boxed.bg-primary .bg-white {
  color: var(--primary-bg-color);
}

.bg-success,
.btn-success,
.bg-boxed.bg-success:before {
  background: var(--success-bg-color) !important;
  background-color: var(--success-bg-color) !important;
  border-color: var(--success-bg-color);
}
.btn-success:hover {
  border-color: var(--success-bg-color);
}
.bg-boxed.bg-success:before {
  background-image: url();
  background-repeat: no-repeat;
  background-position: center bottom;
}

.bg-danger,
.btn-danger,
.bg-boxed.bg-danger:before {
  background: var(--danger-bg-color) !important;
  background-color: var(--danger-bg-color) !important;
  border-color: var(--danger-bg-color);
}
.btn-danger:hover {
  border-color: var(--danger-bg-color);
}
.bg-boxed.bg-danger {
  color: #fff;
}

.bg-warning,
.btn-warning,
.btn-outline-warning:hover,
.bg-boxed.bg-warning:before {
  background:  #aa9a8d !important;
  background-color:  #aa9a8d !important;
  border-color: #aa9a8d !important;
}
.btn-warning:hover,
.btn-outline-warning:hover {
  color: #fff;
  border-color: var(--warning-bg-color);
}
.btn-outline-warning {
  color: var(--warning-bg-color);
}

.bg-light,
.btn-light,
.bg-boxed.bg-light:before {
  background: var(--light-bg-color) !important;
  background-color: var(--light-bg-color) !important;
  border-color: var(--light-bg-color);
}

.bg-boxed {
  position: relative;
  background: transparent !important;
  background-color: transparent !important;
  overflow-x: hidden;
}
.bg-boxed:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  margin: 0 auto;
  z-index: -1;
}


/* lists */
.list-bg-dash {
  list-style: none;
  padding: 0;
}
.list-bg-dash li {
  background: #fff;
  padding: 5px 15px 5px 30px;
  margin-top: 9px;
  position: relative;
}
.list-bg-dash.color-1 li,
.list-bg-dash.color-2 li {
  background: #f0f0f0;
}
.list-bg-dash li:after {
  content: "";
  background: #000;
  position: absolute;
  width: 30px;
  height: 4px;
  top: 50%;
  left: -15px;
  margin-top: -2px;
}

.list-bg-dash li:nth-child(1):after {
  background: #e73862;
}
.list-bg-dash li:nth-child(2):after {
  background: #3aaee3;
}
.list-bg-dash li:nth-child(3):after {
  background: #7dba32;
}
.list-bg-dash li:nth-child(4):after {
  background: #7dba32;
}
.list-bg-dash li:nth-child(5):after {
  background: #aa9a8d;
}

.list-bg-dash.color-1 li:nth-child(1):after {
  background: #523286;
}
.list-bg-dash.color-1 li:nth-child(2):after {
  background: #e73862;
}
.list-bg-dash.color-1 li:nth-child(3):after {
  background: #7dba32;
}
.list-bg-dash.color-1 li:nth-child(4):after {
  background: #aa9a8d;
}

.list-bg-dash.color-2 li:nth-child(1):after {
  background: #5ab9c5;
}
.list-bg-dash.color-2 li:nth-child(2):after {
  background: #aa9a8d;
}
.list-bg-dash.color-2 li:nth-child(3):after {
  background: #523286;
}
.list-bg-dash.color-2 li:nth-child(4):after {
  background: #e73862;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-check li {
  background: url('../img/li-check.png') no-repeat left 18px;
  padding-left: 30px;
  padding-top: 16px;
}

.checkbox-custom {
  width: 20px; height: 20px;
}

.checkbox-custom:hover {
  cursor: pointer;
}

.checkbox-div {
  padding: 0px; 
  vertical-align: text-top;
  font-size: 11px;
}

/* body
/* -------------------------------------------------- */
body {
  padding-top: 90px;
}

/* nav
/* -------------------------------------------------- */
nav {
  min-height: 90px;
  font-weight: 500;
}

nav .navbar-brand {
  position: relative;
  width: 150px;
}

.margin-top-10 {
  margin-top: 10px;
}

@media (min-width: 1200px) {
  nav .navbar-brand {
    width: 350px;
  }
  nav .navbar-brand img {
    position: absolute;
    top: -25px;
    left: 0;
  }
}

/* header
/* -------------------------------------------------- */
header {
  position: relative;
  color: #fff;
  padding-top: 640px;
  padding-bottom: 210px;
}
header:before {
  background-image: url("../img/") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover;
}
header a.btn.btn-outline-light {
  padding: 5px 15px;
  white-space: normal;
  margin-top: 0;
  border-width: 2px;
  font-size: 500;
}

/* #partners-header
/* -------------------------------------------------- */
#partners-header {
  margin-top: -65px;
}
@media (max-width: 1199px) {
  #partners-header {
    margin-top: -80px;
  }
}

/* #ideas
/* -------------------------------------------------- */
#ideas {

}

#ideas .item + .item {
  margin-top: 50px;
}

#ideas .item .icon {
  position: absolute;
  top: 70px;
  left: -40px;
  width: 80px;
  height: 80px;
  padding: 24px;
}

/* #about-enterprise
/* -------------------------------------------------- */
#about-enterprise {
  padding-bottom: 150px;
}
#about-enterprise:before {
  background-image: url("../img/about-enterprise-bg.png") !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
}

/* #about-program
/* -------------------------------------------------- */
#about-program {
  background-color: #f4f4f4
}

#about-program img.btn-outline-light {
  color: #e6e6e6;
  border-color: #e6e6e6;
  cursor: default !important;
}

/* #implementation
/* -------------------------------------------------- */
#implementation {
  min-height: 681px;
  color: white;
}
#implementation:before {
  background-image: url("../img/main-image2.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* #partners
/* -------------------------------------------------- */
#partners {

}

.partners h3 {
  padding: 15px 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .partners-header {
    margin-top: 50px;
    height: auto !important;
  }
}
.partners .partners-header {
  position: relative;
}
.partners .partners-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #eaeaea;
  width: 225px;
  max-width: 100%;
  height: 1px; 
}

/* #contact
/* -------------------------------------------------- */
#contact {
  background-image: url("../img/dot1.jpg") !important;
  color: white;
}

/* footer
/* -------------------------------------------------- */
footer {

}

footer .item {
  padding: 20px 50px;
}

footer img {
  margin-top: -17px;
}

@media (min-width: 576px) {
  footer .item + .item {
    border-left: 1px solid #4e4e4e;
  }
}

/* #contact
/* -------------------------------------------------- */

#contact-form {
  background-image: url("../img/dot2.jpg") !important;  
  background-position: center center !important;
}
#contact-form .border {
  border-color: #ddd !important;
}

@media (max-width: 991px) {
  #contact-form .border {
    border: none !important;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.4); 
  font-size: 12px;
}
/* #custom css
/* -------------------------------------------------- */

.custom-relative1 {
  position: relative;
}

.custom-relative1:before {
  position: absolute;
  background-color: red;
  width: 65px;
  height: 65px;
  left: -100px;
  top: -15px;
  content: "";
  background-image: url("../img/icon-1.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.custom-relative2 {
  position: relative;
}

.custom-relative2:before {
  position: absolute;
  background-color: red;
  width: 65px;
  height: 65px;
  left: -100px;
  top: -15px;
  content: "";
  background-image: url("../img/icon-2.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.custom-relative3 {
  position: relative;
}

.custom-relative3:before {
  position: absolute;
  background-color: red;
  width: 65px;
  height: 65px;
  left: -100px;
  top: -15px;
  content: "";
  background-image: url("../img/icon-3.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.custom-relative4 {
  position: relative;
}

.custom-relative4:before {
  position: absolute;
  background-color: red;
  width: 65px;
  height: 65px;
  left: -100px;
  top: -15px;
  content: "";
  background-image: url("../img/icon-4.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.custom-relative5 {
  position: relative;
}

.custom-relative5:before {
  position: absolute;
  background-color: red;
  width: 65px;
  height: 65px;
  left: -100px;
  top: -15px;
  content: "";
  background-image: url("../img/icon-5.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.custom-push1 {
  margin-left: 120px;
}

.custom-margin-top1 {
  margin-top: 30px;
}

.custom-margin-bottom1 {
  margin-bottom: 60px;
}

.custom-margin-top2 {
  margin-top: 30px;
}

.custom-margin-top3 {
  margin-top: 25px;
}

.custom-push-left {
  margin-left: 0px;
}

.custom-push-top {
  margin-top: 50px;
}

.custom-margin-bottom4 {
  margin-bottom: 30px;
}

.padding-0 {
  padding: 0px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.margin-top-20 {
  margin-top: 20px;
}

.width-60-d-ib {
  width: 60%;
  display: inline-block;
}

.padding-40 {
  padding: 40px;
}

.background-color-black {
  background-color: black;
}

.background-color-white {
  background-color: white;
}

.display-ib {
  display: inline-block;
}

.custom-option-container {
  background-color: #f4f4f4;
  margin-bottom: 20px;
  height: auto;
}


@media (max-width: 576px) { 
  .userdata-align {
    text-align: center !important;
  }
  .option-container2 {
    margin-left: 0px;
  }
  .custom-relative1:before {
    left: -80px;
  }
  .custom-relative2:before {
    left: -80px;
  }
  .custom-relative3:before {
    left: -80px;
  }
  .custom-relative4:before {
    left: -80px;
  }
  .custom-relative5:before {
    left: -80px;
  }
  .custom-margin-left1 {
    margin-left: 80px;
  }
  .custom-push1 {
    margin-left: 0px;
  }
}

/* OWL css
/* ----------------------------------------------------- */

#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}

.myitem1 {
  height: 700px;
  background-image: url("../img/main-image-changed2.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.myitem2 {
  height: 700px;
  background-image: url("../img/main-image8.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.caro-theme {
  display: inline-block; 
  height: auto; 
  border: 2px solid white; 
  padding: 0px 20px;
}

.caro-sub-theme {
  color: white; 
  margin-top: 10px; 
  font-size: 34px;
}

.caro-theme-container {
  color: white; 
  font-size: 24px; 
  padding: 250px 0px 0px 0px;
}

.opinion {
  text-align: center;
  font-size: 20px;
}

.signature {
  font-size: 15px;
}

.userdata-align {
  text-align: right;
}

.option-container {
  background-color: #f4f4f4; 
  margin-bottom: 20px; 
  height: auto;
}

.option-container2 {
  margin-top: 60px; 
  margin-left: 150px;
}

.lipadding {
  margin: 0px 10px;
}

@media (max-width: 991px) { 
  .lipadding {
    margin: 0px 0px;
  }
}

#cooperation {
  background-color: #f4f4f4;
}

@media (max-width: 528px) {
  #implementation:before {
  background-image: none !important;
  background-color: black;
  padding: 80px 0px !important;
  }
}

/* form mailer
/* ------------------------------------------- */

.form-container {
  border: 0px solid white; 
  width: 40%; color: white;
  padding-top: 50px;

}

.form-container {
  border: 0px solid white; 
  width: 40%; 
  color: white;
  padding-top: 50px;

}

.mybtn {
  background-color: #aa9a8d !important;
  width: 40%;
  padding: 11px 0px;
}

.pushform {
  margin-top: 10px;
  margin-bottom: 30px;
  border: 2px solid #2e2e2e;
}

@media (max-width: 1440px) {
  .form-container {
    width: 60%
  }
}

@media (max-width: 1024px) {
  .form-container {
    width: 90%;
  }
}

@media (max-width: 650px) {
  .mybtn {
    width: 200px;
  }
}
