@import url('/css/whatBlock.inc.css');
@import url('/css/_modules/List.mod.css');

.homeRow {
    padding: 50px 0;
}
@media screen and (min-width: 769px) {
    .homeRow {
        padding: 100px 0;
    }
}
.homeRow--light {
    background-color: #f7f7f7;
}
.homeRow__icon {
    display: inline-block;
    color: #f4a460;
    font-size: 80px;
    margin-bottom: 20px;
}

.homeSlide {
    background-image: url(/img/homepage/slider1.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    /*display: flex;
	align-items: flex-end;*/
    height: 55vh;
    min-height: 450px;
    /*justify-content: center;*/
}
.homeSlide > .container {
    position: relative;
    height: 55vh;
}
.homeSlide__Button {
    /*bottom: 70px;
	margin-bottom: 60px;*/
}
.homeSlide__text {
    line-height: 1;
    position: absolute;
    bottom: 20px;
    left: 14%;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    text-align: center;
    width: 300px;
}
.homeSlide__textText {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.homeDiscount__container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}
.homeDiscount__wrapper {
    height: 30px;
    width: 700px;
    background-color: rgb(0, 74, 173);
    display: flex;
    justify-content: center;
}
.homeDiscount__text {
    color: rgb(255, 255, 255);
    margin-right: 20px;
    height: 20px;
    margin-top: 3px;
}
.homeDiscount__coupon {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    height: 20px;
    margin-top: 5px;
    line-height: 16px;
    border-style: dashed;
    border-width: 2px;
    border-color: rgb(0, 0, 0);
}

.homeSupportBlock {
    background: url('/img/homepage/tech-support.jpg');
    position: relative;
}
.homeSupportBlock:before {
    content: ' ';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
}

.homeSupportBlock .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 769px) {
    .homeSupportBlock .container {
        flex-direction: row;
    }
}

.homeSupportBlock__block {
    flex-grow: 1;
    text-align: center;
}
.homeSupportBlock__block:not(:last-child) {
    margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
    .homeSupportBlock__block:first-child {
        margin-right: 135px;
        text-align: left;
    }
}

.homeSupportBlock__phone {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    white-space: nowrap;
    width: auto;
    max-width: 390px;
}
.homeSupportBlock__phone .icofont {
    color: #f4a460;
}

.homeWelcome-text {
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .homeWelcome-text {
        width: 70%;
    }
}


/* Login button CSS */

.loginButton {
	background-color: #446F9C;
	border: #446F9C;
	padding: 5px 20px;
	text-align: center;
	width: 150px;
	color: white;
	margin-left: 25px;
  }

  @media screen and (max-width: 768px) {
	.loginButton {
		margin: 15px auto;
	}
  }
  
  .loginButton a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	position: relative;
	transition: 0.5s;
  }
  
  .loginButton:hover {
	background-color: #284b71;
	color: #fff;
  }
  
  .loginButton a:after {
	content: "\00bb";
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
  }
  
  .loginButton:hover a {
	padding-right: 25px;
  }
  
  .loginButton:hover a:after {
	opacity: 1;
	right: 0;
  }