@import 'reset.css';

/************************************************
Global
*************************************************/
body {
  font-family: 'Nunito', sans-serif;
  height: 100%;
  font-size: 16px;
  
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.19;
}

p {
  line-height: 1.25;
}

.u-color-primary {
  color: #0082fa;
}

.u-bg-primary {
  background-color: #0082fa;
}

.u-bg-dark-pattern {
  background-image: url(../img/bg_pattern.jpg);
  background-repeat: repeat-y;
  background-size: contain;
  color: #fff;
}

.c-button {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 400;
  
  padding: 12px 35px;

  border-radius: 30px;
  border: none;
  box-shadow: none;

  transition: all 0.2s;
}
.c-button:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0082fa;
}

.c-button--primary {
  color: #fff;
  background-color: #0082fa;
  border: 1px solid #0082fa; 
}
.c-button--primary:hover {
  background-color: transparent;
  color: #fff;
  border-color: currentColor;
}

.c-button--white {
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
}
.c-button--white:hover {
  background-color: transparent;
  border: 1px solid #fff;
}

.c-button--hollow {
  color: #fff;
  border: 1px solid currentColor;
}
.c-button--hollow:hover {
  border: 1px solid #0082fa;
}

.page-container {
  border-radius: 30px;
  border: 1px solid rgba(0, 47, 21, 0.1);
  overflow: hidden;
  max-width: 1140px;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.o-section {
  margin-top: 35px;
  margin-bottom: 35px;
}
@media all and (min-width: 768px) {
  .o-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.o-section-bg {
  padding-top: 35px;
  padding-bottom: 35px;
}
.o-section-bg--big {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .o-section-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .o-section-bg--big {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

/************************************************
Top Bar
*************************************************/
.top-bar {
  height: 125px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .top-bar {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.main-logo {
  max-width: 150px;
}
@media (min-width: 576px) {
  .main-logo {
    max-width: 170px;
  }
}
@media all and (-ms-high-contrast:none) {
  .main-logo {
    height: 40px;
  }
}

.cat-logo {
  max-width: 70px;
}


/************************************************
Header
*************************************************/
.page-header {
  color: #fff;
  background-color: #000;
  background-image: url(../img/home_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  box-shadow: inset #000 0px 0px 75px;
}
@media (min-width: 992px) {
  .page-header {
    background-size: 115%;
  }
}
.page-header__subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
}
.page-header__title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;;
}
.page-header__btn {

}

@media all and (min-width: 768px) {
  .page-header {
    
  }
  .page-header__subtitle {
    font-size: 32px;
  }
  .page-header__title {
    font-size: 42px;
  }
  .page-header__btn {
  
  }
}

@media all and (min-width: 1024px) {
  .page-header {
    height: 725px;
  }
}

/************************************************
Footer
*************************************************/
.page-footer {
  padding-top: 75px;
  padding-bottom: 75px;

  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #191c20; 
}
.page-footer a {
  color: inherit;
}
.page-footer a:hover {
  color: rgba(255, 255, 255, 0.2);
}
.page-footer__cat {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255, 0.2);
}
.page-footer__cat img {
  flex: 0 0 45px;
  width: 45px;
}
.page-footer__cat span {
  margin-left: 25px;
  line-height: 1.3;
}


/************************************************
Steps
*************************************************/
.section-steps {

}
.section-steps h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-steps img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 65px;
}
.section-steps p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-steps p strong {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .section-steps h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media all and (min-width: 1024px) {
  
}


/************************************************
Features
*************************************************/
.section-features {
  min-height: 650px;
  padding-bottom: 300px;

  background-image: url(../img/wartunki_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;

  color: #33393a;
}
.section-features__title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 300;
}
.section-features__title strong {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .section-features__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.feature {
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature__icon {
  margin-left: auto;
  margin-right: auto;;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature img {
  margin-bottom: 10px;
}


/************************************************
Combat 
*************************************************/
.section-combat {
  background-image: url(../img/combat_bg2.jpg);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center right;
}
@media (min-width: 992px) {
  .section-combat {
    background-size: 60%;
  }
}
.section-combat img {
  margin-bottom: 35px;
}
.section-combat h4 {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 35px;
}
.section-combat h4 span {
  font-size: 18px;
  font-weight: 400;
}
.section-combat h4 span a {
  text-decoration: underline;
  color: #000;
}
.section-combat h4 span a:hover {
  color: #fff
}
.section-combat__left {
  background-color: #63c413;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;

  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 60px;
  padding-right: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-combat__left {
    background-image: url(../img/green_bg.png);
    background-color: transparent;
  }
}

.combat-btn {  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px 14px 25px;
  
  background-color: #000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;

  position: relative;
  margin-left: 15px;
}
.combat-btn:before {
  position: absolute;
  right: 100%;
  top: 0;
  
  content: '';
  display: inline-block;
  width: 20px;
  height: 100%;
  transform: skew(-8deg) translateX(50%);
  background-color: #000;
}
.combat-btn img {  
  margin: 0 0 0 15px;
}
.combat-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #323232;
}
.combat-btn:hover:before {
  background-color: #323232;
} 


/************************************************
Combat - offer
*************************************************/
.section-combat-offer {
  background-color: #323232;
  color: #fff;
}
.section-combat-offer a {
  color: #63c413;
  text-decoration: underline;
}
.section-combat-offer a:hover {
  color: #fff;
}
.section-combat-offer__left {
  background-color: #000;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;

  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 60px;
  padding-right: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-combat-offer__left {
    background-image: url(../img/black_bg.png);
    background-color: transparent;
  }
}
.section-combat-offer__right {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 60px;
  padding-right: 60px;

  display: flex;
  align-items: center;
}

.combat-list {
  list-style-type: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 25px;
  position: relative;
  left: -1rem;
}
.combat-list li {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.combat-list li img {
  width: 42px;
  margin-right: 10px;
}


/************************************************
Offers
*************************************************/
.offers {

}


.offer {
  background-image: url(../img/phone_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;

  display: flex;
  align-items: stretch;

  padding-left: 0;
  padding-right: 0;

  /* border-bottom: 2px solid rgba(255,255,255, 0.1); */
  position: relative;
}
@media (min-width: 768px) { 
  .offer {
    background-position: left center;
    background-size: 60%;
  }
}
@media (min-width: 992px) {
  .offer {
    background-size: auto;
    background-position: left center;
    padding-left: 100px;
    padding-right: 100px;
  }
}
.offer:after {
  position: absolute;
  bottom: 0;
  left: 5%;
  content: '';
  display: block;
  width: 90%;
  height: 2px;
  background: rgba(255,255,255, 0.1);
}
.offer:last-child:after {
  opacity: 0;
}
.offer:nth-child(2n) {
  flex-direction: row-reverse;
  background-position: top center;
}
@media (min-width: 768px) { 
  .offer:nth-child(2n) {
    background-position: right center;
    background-size: 60%;
  }
}
@media (min-width: 992px) {
  .offer:nth-child(2n) {
    background-size: auto;
    background-position: right center;
  }
}
.offer__phone img {
  max-width: 100%;
}
.offer__desc {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) { 
  .offer__desc {
    padding-left: 50px;
  }
}

.offer__text {
  width: 100%;
}
.offer__header {
  margin-bottom: 30px;
}
.offer__header h4 {
  font-size: 22px;
}
.offer__header h5 {
  font-size: 16px;
}
.offer__list {
  margin-bottom: 30px;
  list-style-type: none;
}
.offer__list li {
  line-height: 1.375;
  padding-left: 30px;
  position: relative;
}
.offer__list li:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 12px;
  background-image: url(../img/tick.png);
  background-repeat: no-repeat;
  background-position: center;
}


.price {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.price__text {
  font-size: 16px;
  font-weight: 400;
}

.more {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}