/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

ul, ol{
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;
}

hr{
	margin: 44px 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,.1);
}


.max-width{
	width: 100%;
	max-width: 1044px;
	margin: 0 auto;
	padding: 0 44px;
	box-sizing: border-box;
	
}

body{
	font-family: "Noto Sans Armenian", serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	letter-spacing: .1em;
	color: #111;
}

.heavy-text{
	font-family: "Bree Serif", serif;
	font-weight: 800;
	font-style: normal;
}

header{
	height: 50vw;
	max-height: 800px;
	background: #333 url(/images/2x/hero-2-image@2x.png) no-repeat 50% 100px;
	background-size: cover;
}

ul li{
	list-style: none;
}

p{
	margin-bottom: 2em;
}

nav{
	background: rgba(32,50,77,1);
	box-sizing: border-box;
}

nav ul{
	margin: 0;
	border: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

nav ul li{
	display: block;
	margin: 0;
	padding: 22px 11px;
}

nav ul li a{
	text-decoration: none;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
}

.logo-bar{
	background: white;
	padding: 11px;
	margin: 0;
}

.logo-bar .logo{
	width: 300px;
	height: 100px;
	margin: 0 auto;
	background: transparent url(/images/SVG/full-logo.svg) no-repeat 50% 50%;
	background-size: contain;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 110%;
}

.new{
	background: rgba(32,50,77,1);
	box-sizing: border-box;
	padding: 22px;
	margin: 0 auto;
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 32pt;
}

#features{
	margin: 44px auto;
	text-align: center;
}

#features li strong{
	display: block;
	margin-top: 2em;
}

.grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.grid .grid-item{
	box-sizing: border-box;
	padding: 0 22px;
}

.grid-2 .grid-item{
	width: 50%;
}

.grid.js img{
	display: none;
}

.grid.js .image{
	height: 0;
	padding-bottom: 66%;
	background-color: #333;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.grid .grid-item p{
	text-align: center;
}


.columns{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}

.columns .column{
	box-sizing: border-box;
	border-left: 2px solid #111;
}

.columns .column-1{
	border: none;
}

.columns-2 .column{
	width: 50%;
}

.business-card{
	display: block;
	box-sizing: border-box;
	padding: 22px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: nowrap;
}

.business-card p{
	margin: 0;
}

.business-card > div{
	box-sizing: border-box;
	padding: 5px;
}

.business-card .text-info{
	width: 60%;
	box-sizing: border-box;
	margin: 22px 0;
}

.business-card .name{
	font-family: "Bree Serif", serif;
	font-weight: 800;
	font-style: normal;
	text-transform: uppercase;
	font-size: 26pt;
	line-height: 1em;
}

.business-card .title{
	font-size: 12pt;
	white-space: nowrap;
}

.business-card .tel{
	font-weight: 900;
	font-size: 22px;
	white-space: nowrap;
}

.business-card .tel a,
.business-card .web a{
	text-decoration: none;
	color: #111;
	border-bottom: 1px solid white;
	padding-bottom: .2em;
}

.business-card .tel a:hover,
.business-card .web a:hover{
	text-decoration: none;
	color: #111;
	border-bottom: 1px solid #111;
}

.business-card .logo{
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
	width: 40%;
	margin-left: 44px;
}

.business-card.remax .logo{
	background-image: url(/images/SVG/remax-logo.svg);
}

.business-card.trunorth .logo{
	background-image: url(/images/SVG/trunorth-logo.svg);
}

.business-card.trunorth .qr-code{
	background-image: url(/images/SVG/trunorth-qr.svg);
}

footer{
	background: rgba(32,50,77,1);
	box-sizing: border-box;
	color: white;
	margin: 0;
	padding: 44px 0;
}

@media screen and ( max-width: 600px ){
	
	.max-width {
		padding: 0 22px;
	}
	
	header{
		height: 400px;
	}
	
	.grid,
	.columns{
		display: block;
	}
	
	.grid-item,
	.column{
		width: 100% !important;
		border: none !important;
	}
}