/**
 * ===================================================================
 *  # v1.0 Main Stylesheet
 *  url: -
 * -------------------------------------------------------------------
 *
 * TOC:
 * a. webfonts and iconfonts
 * b. base style overrides
 * d. buttons
 * e. common styles
 *
 * 01. header styles
 * 02. intro section
 * 06. second section
 * 05. features section

 * 07. call-to-action-form section
 * 08. testimomials section
 * 09. documents section
 * 10. call-to-action section
 * 11. map section
 * 12. partners section
 * 13. contacts section
 * 14. footer
 *
 * go to top
 *
 * ===================================================================
 */


/**
 * ===================================================================
 * a. webfonts and iconfonts
 * -------------------------------------------------------------------
 */
@import url("flaticon/flaticon.css");
/* @import url("fonts.css"); */


/**
 * ===================================================================
 * b. base style overrides
 * -------------------------------------------------------------------
 */
html {
  font-size: 10px;
}

@media only screen and (max-width:1024px) {
  html {
    font-size: 9.375px;
  }
}

@media only screen and (max-width:768px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (max-width:400px) {
  html {
    font-size: 9.375px;
  }
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #4c4c4c;
}


*:focus-visible {
 outline: 2px red dotted !important;
}

/**
 * links
 */
a,
a:visited {
  color: #bd0023;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #ff4f77;
  text-decoration: underline;
}

/**
 * typography
 */
h1,
h2,
h3,
h4,
h3 {
  color: #000;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 1.6rem;
  text-rendering: optimizeLegibility;
  /* text-transform: uppercase; */
  font-variant: small-caps;
  text-align: center !important;
}

h3,
h4 {
  margin-bottom: 1.4rem;
}

h3,
h6 {
  font-weight: bold;
  margin-bottom: 1.0rem;
}

h1 {
  font-size: 4.8rem;
  line-height: 1.25;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.35;
  text-align: center;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.5;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.70;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.75;
}

@media only screen and (max-width:600px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

p img {
  margin: 0;
}

p.lead {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #737373;
}

@media only screen and (max-width:768px) {
  p.lead {
    font-size: 1.7rem;
  }
}

abbr {
  /*text-transform: uppercase;*/
  font-variant: small-caps;
  text-transform: none;
}

/**
 * spacing
 */
button,
.button {
  margin-bottom: 1.2;
}

fieldset {
  margin-bottom: 1.5rem;
  border: none;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.iw-custom-select {
  margin-bottom: 3rem;
}

/**
 * block grids paddings
 */
.bgrid {
  padding: 0 20px;
}

@media only screen and (max-width:1024px) {
  .bgrid {
    padding: 0 18px;
  }
}

@media only screen and (max-width:768px) {
  .bgrid {
    padding: 0 15px;
  }
}

@media only screen and (max-width:600px) {
  .bgrid {
    padding: 0 10px;
  }
}

@media only screen and (max-width:400px) {
  .bgrid {
    padding: 0;
  }
}


/**
 * ===================================================================
 * d. buttons
 * -------------------------------------------------------------------
 */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border: 1px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  font-size: 1.6rem;
  font-family: Georgia, serif;
  height: 4rem;
  line-height: 3.8rem;
  padding: 0 2rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background: #ff4f77;
  color: #fff;
  outline: 0;
  text-decoration: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}


/**
 * ===================================================================
 * e. common styles
 * -------------------------------------------------------------------
 */
section {
  background: #fff;
  padding-top: 8rem;
  padding-bottom: 8rem;
}


.section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

/**
 * responsive:
 * common styles
 * -------------------------------------------------------------------
 */
@media only screen and (max-width:768px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media only screen and (max-width:600px) {}

@media only screen and (max-width:400px) {}


/**
 * ===================================================================
 * 01. header
 * -------------------------------------------------------------------
 */
header {
  background: #000;
  left: 0;
  top: 0;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  z-index: 600;
  height: 130px;
}



header .col-md-8 {
  margin-top: 26px;
}

header .logo img {
  height: 130px;
}

header .logo a {
  background-size: cover;
  border: none;
  color: transparent;
  display: block;
  font: 0/0 a;
  height: 100px;
  width: 406px;
  max-width: 100%;
}

header nav {
  margin: 40px 0 0 !important;
}

/**
 * responsive:
 * header section
 * -------------------------------------------------------------------
 */
@media only screen and (max-width:768px) {
  header {
    top: 0;
    padding: 0;
  }

  header .row {
    height: 80px;
  }
}

/* primary navigation */
#main-nav-wrap,
.main-navigation {
  margin: 0;
  padding: 0;
}

/* hide toggle button */
a.menu-toggle {
  display: none;
}

/* main-nav-wrap */
#main-nav-wrap {
  font-size: 16px;

}

.main-navigation {
  min-height: 80px;
  display: inline-block;
  width: auto;
  text-align: right;
}

.main-navigation li {

  position: relative;
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* navigation links */
.main-navigation li a {
  display: block;
  padding: 20px 10px 0px 10px;
  line-height: 15px;
  text-decoration: none;
  text-align: left;
  color: #fff;
  position: relative;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.main-navigation .dropdown li a {

  padding: 20px 10px 20px 10px;

}

.main-navigation li a:active {
  background-color: transparent;
}

.main-navigation li a:hover {
  color: #ff4f77;
}

.main-navigation li.current>a {
  color: #ff2d55;
}

.drop {
  display: none;
  position: absolute;
  background: #000;
}

.drop li {
  display: block;
  height: auto;
  width: 200px;
}

.dropdown:hover .drop {
  display: block;
}

.dropdrop {
  display: none;
  position: absolute;
  background: #000;
  top: 0px;
  left: 100%;
}

.drp:hover .dropdrop {
  display: block;
}

/**
 * mobile view:
 * primary navigation
 * -------------------------------------------------------------------
 */
@media only screen and (max-width:1024px) {
  header .top-bar {
    display: none;
  }

  #main-nav-wrap {
    display: block;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;
  }

  a.menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -20px;
  }

  a.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: -1.5px;
    position: absolute;
    right: 8px;
    top: 50%;
    bottom: auto;
    left: auto;
    background-color: #ff2d55;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -webkit-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    text-shadow: none;
	font-size: 18pt;

  }

  a.menu-toggle span::before,
  a.menu-toggle span::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: inherit;
    left: 0;
    -moz-transition-duration: 0.2s, 0.2s;
    -o-transition-duration: 0.2s, 0.2s;
    -webkit-transition-duration: 0.2s, 0.2s;
    -ms-transition-duration: 0.2s, 0.2s;
    transition-duration: 0.2s, 0.2s;
    -moz-transition-delay: 0.2s, 0s;
    -o-transition-delay: 0.2s, 0s;
    -webkit-transition-delay: 0.2s, 0s;
    -ms-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  a.menu-toggle span::before {
    top: -8px;
    -moz-transition-property: top, transform;
    -o-transition-property: top, transform;
    -webkit-transition-property: top, transform;
    -ms-transition-property: top, transform;
    transition-property: top, transform;
  }

  a.menu-toggle span::after {
    bottom: -8px;
    -moz-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    -webkit-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    transition-property: bottom, transform;
  }

  .menu-toggle.is-clicked span {
    background-color: rgba(255, 255, 255, 0);
  }

  .menu-toggle.is-clicked span::before,
  .menu-toggle.is-clicked span::after {
    background-color: #ff2d55;
    -moz-transition-delay: 0s, 0.2s;
    -o-transition-delay: 0s, 0.2s;
    -webkit-transition-delay: 0s, 0.2s;
    -ms-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .menu-toggle.is-clicked span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu-toggle.is-clicked span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .main-navigation {
    background: #e3e3e3;
    padding: 20px 40px 20px 40px;
    margin: 0;
    width: 100%;
    height: auto;
    clear: both;
    display: none;
  }

  .main-navigation>li {
    display: block;
    height: auto;
    text-align: left;
    border-bottom: 1px dotted rgba(200, 200, 200, 0.08);
    padding: 0;
  }

  .main-navigation>li:first-child {
    border-top: 1px dotted rgba(200, 200, 200, 0.08);
  }

  .main-navigation li a {
    display: block;
    color: #000;
    width: auto;
    height: 70px;
    padding: 20px 10px;
    line-height: 30px;
    border: none;
  }

  .main-navigation li a:hover {
    color: #222;
  }

  .main-navigation li.current>a {
    background: none;
    color: #ff2d55;
  }

  .main-navigation li.current>a:after {
    display: none;
  }
}


/* make sure the menu is visible on larger screens
@media only screen and (min-width:769px) {
	#main-nav-wrap ul.main-navigation {
		display: block !important;
	}
}*/


/**
 * ===================================================================
 * 6. call-to-action
 * -------------------------------------------------------------------
 */
#cta {
  background: #e3e3e3;
  text-align: center;
}


/**
 * ===================================================================
 * Standart page
 * -------------------------------------------------------------------
 */
#standartpage {}

section#standartpage {

  padding: 0px !important;
}

#standartpage .content {


  width: 100%;
  vertical-align: middle;
  padding: 8rem 0;


}

#standartpage .main-content {
  padding: 8rem 15px;

}

#standartpage h2 {
  font-size: 2.2rem;
  line-height: 1.35;
  color: #900;
}

.sidebar-right {
  background: #E4E4E7;
  color: #232425;
}
.sidebar-right a {
  color: #B71518;
}
.grey-wrap {
  background: #737373;
}
body#home .grey-wrap {
  background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(255,255,255,0) 100%);
  min-height: 90px;
}

.grey-wrap h1 {
  color: #fff;
  font-size: 5rem;
  margin: 0 1.6rem;

}

.greybar {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 90px;
}

.sidebar-menu li.current {
  position: relative;
  padding-left: 20px;

}

.sidebar-menu li.current:before {
  position: absolute;
  left: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  content: '❱';
  font-size: 24px;
  color: #c6282b;
}

.bg1 {
  background: url(../images/concrete_seamless.png);
}


/**
 * ===================================================================
 * 7. footer
 * -------------------------------------------------------------------
 */
footer {
  background: #000;
  color: #ddd;
  padding-top: 10rem;
}

footer ul {
  margin-left: 0;
}

footer ul li {
  padding-left: 0;
}

footer ul li {
  list-style: none;
}

footer a,
footer a:visited,
footer ul a,
footer ul a:visited {
  color: #fff;
}

footer a:hover,
footer a:focus,
footer ul a:hover,
footer ul a:focus {
  color: #ff2d55;
}

.footer-logo {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.5;
}

.social {
  background-position: center;
  background-size: contain;
  border-radius: 2px;
  border: none;
  height: 26px;
  width: 26px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 1rem;
}

.soc a {
  font-size: 30px;
  display: inline-block;
  margin: 0px 2rem;
}

.footer-bl-wrap>* {
  float: left;
  padding: 0 20px;
}

.contact-bl {
  width: 23.33333%;
}

.menu-bl {
  width: 76.66666%;
}

.menu-bl>ul {
  display: inline-block;
  vertical-align: top;
}

.menu-bl .m-col-1 {
  width: 20%;
}

.menu-bl .m-col-2 {
  width: 32%;
  margin-left: 4%;
}

.menu-bl .m-col-3 {
  width: 24%;
}

.menu-bl .m-col-4 {
  width: 16%;
  margin-left: 2%;
}

/* copyright */
.copyright {
  background: #000;
  padding: 3rem 0;
  text-align: center;
}

.copyright span {
  display: inline-block;
}

.copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  /* color: #222 */;
}

.copyright span:last-child::after {
  display: none;
}

.fa-facebook {
  color: #3b5998;
}

.fa-youtube {
  color: #e62117;
}

.fa-twitter {
  color: #41abe1;
}

.fa-linkedin {
  color: #0073b0;
}


/**
 * ===================================================================
 * go to top
 * -------------------------------------------------------------------
 */
#go-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 600;
  display: none;
}

#go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 66px;
  width: 60px;
  line-height: 66px;
  text-align: center;
  background: #ff2d55;
  color: #000;
  text-align: center;
  /*text-transform: uppercase;*/
  font-variant: small-caps;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14pt;
  font-weight: bold;
}

#go-top a i {
  line-height: inherit;
}

#go-top a:hover {
  background: #ff4f77;
  color: #fff;
}

@media only screen and (max-width:768px) {
  header .logo a {
    background-size: 100%;
  }

  a.menu-toggle {
    right: 10px;
  }
}

.aside {
  background: #fff;
  padding: 20px 0;
}

.aside a,
.aside a span {
  color: #e5272b;
  font-size: 14px;
}

.aside span {
  font-size: 16px;
  color: #000;
}

#cta span {
  color: #990000;
 /* text-decoration: underline;*/

}

.flex-control-nav span {
  color: #fff;
  overflow: hidden;
}

.style1 {
  color: #000000;
}

/**
	 * ===================================================================
	 * 1. intro section
	 * -------------------------------------------------------------------
	 */
#intro {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  width: 100%;
  max-height: 640px;
  /*min-height: 640px;*/
  display: table;
  padding: 0;
  position: relative;
  /*text-transform: uppercase;*/
  font-variant: small-caps;
  overflow: hidden;
}

#intro .bg {
	position: absolute;
	width: 100%;
	max-height: 640px;
}

#intro .content {
  /*display:none;*/
  /*background: #000 url(/images/website_banner--shine.jpg) no-repeat center -80px;*/
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;

  top: 0%;
  width: 100%;
  /* height: 100%; */
  vertical-align: middle;
  padding: /*1rem*/ 0;
  position: absolute;
}

#intro .content h1,
#intro .content h2 {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: bolder !important;
  font-size: 4.5rem !important;
  text-align: left !important;
}

#intro span {
  font-size: 3.6rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 600;
}

/*#intro .content h1 {
		color: #fff;
		font-weight: bolder;
	}
	#intro .content h2 {
		color: #fff;
		margin-bottom: 0;
	}*/

#intro .section-intro {
  width: auto;
  padding: 0 50px;
  text-align: left;
}

/**
	 * responsive:
	 * intro
	 * -------------------------------------------------------------------
	 */

@media only screen and (max-width: 1900px) {
  #intro {
    height: auto;
    min-height: 640px;
    /*background-size: auto;
			-moz-background-size: auto;
			-webkit-background-size: auto;*/
  }

  #intro .content {
    /*background-size: auto;
			-moz-background-size: auto;
			-webkit-background-size: auto;*/
  }
}

@media only screen and (max-width: 1300px) {
  #intro {
    min-height: 500px;
    background-position: center -50px;
  }

  #intro .content {
    background-position: center -50px;
  }
}

@media only screen and (max-width:1024px) {
  #intro {
    min-height: 370px;
    background-position: center -30px;
    /*	background-size: auto;
			-moz-background-size: auto;
			-webkit-background-size: auto;*/
  }

  #intro .content {
    background-position: center -30px;
    /*background-size: auto;
			-moz-background-size: auto;
			-webkit-background-size: auto;*/
  }

  .intro-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  #intro .section-intro {
    text-align: center;
  }
}

@media only screen and (max-width:768px) {
  #intro {
    background-position: center -250px;
    background-size: auto;
    -moz-background-size: auto;
    -webkit-background-size: auto;
  }

  #intro .content {
    background-position: center -250px;
    background-size: auto;
    -moz-background-size: auto;
    -webkit-background-size: auto;
  }
}

@media only screen and (max-width:600px) {
  #intro {
    /*min-height: 400px;*/
  }

  #intro .content {
    padding: 0;
  }

  #intro .content h2 {
    font-size: 3rem;
    font-weight: bolder;
  }

  #intro .section-intro {
    padding: 0;
  }
  #intro .bg {
	position: absolute;
	height: 100%;
	max-width: none;
	min-width: none;
	max-height: none;
	min-height: none;
	width: auto;
	margin-left: auto;
    margin-right: auto;
	left: calc(-330px + 50%);
  }
}


/**
	 * ===================================================================
	 * 2. second section
	 * -------------------------------------------------------------------
	 */
section#second {
  background: #f6f8f7;
  border-bottom: 1px solid #7eced5;
  padding-bottom: 3rem;
  padding-top: 4rem;
  position: relative;
  z-index: 10;
}

section#second h1 {
  font-weight: 600;
  /*text-transform: uppercase;*/
  font-variant: small-caps;
}

.second__title {
  font-size: 3.6rem;
  line-height: 1.35;
  font-weight: bolder;
}

@media only screen and (max-width: 600px) {
  .second__title {
    font-size: 3rem;
  }
}

/**
	 * ===================================================================
	 * 3. process section
	 * -------------------------------------------------------------------
	 */
#features {
  background: #fff;
  padding-bottom: 7rem;
}

#features .img {
  float: left;
  width: 30%;
}

#features .text {
  float: right;
  width: 70%;
}

#features .bgrid {
  padding: 0 20px;
}

#features h3 {
  font-family: Georgia, serif;
  font-weight: bold;
  text-transform: none;
  line-height: 2.6rem;
  margin-bottom: 0.4rem;
}

#features sub {
  bottom: 0;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

#features p {
  line-height: 2.6rem;
}


/**
	 * ===================================================================
	 * 4. portfolio section
	 * -------------------------------------------------------------------
	 */
#portfolio {
  background: #252124;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

#portfolio h2 {
  color: #fff;
  margin-bottom: 2rem;
}

#portfolio .flex-container {
  width: 100%;
  margin: 0 auto;
}

#portfolio-slider {
  margin: 0 0 3rem 0;
  position: relative;
}

#portfolio-slider a {
  outline: 0;
}

#portfolio-slider .img {
  background-color: #ccc;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem auto;
  display: block;
  vertical-align: middle;
}
#portfolio-slider .img:focus-visible {
 outline: 2px red dotted !important;
}


/* control nav */
#portfolio .flex-control-nav {
  width: 100%;
  text-align: center;
  display: block;
  position: absolute;
  bottom: -5rem;
}

#portfolio .flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
}

#portfolio .slick-dots button {
  background-color: transparent;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  display: block;
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 50%;
  font: 0/0 a;
  text-shadow: none;
  color: #fff;
  padding: 0 !important;
}

#portfolio .slick-dots li:hover button{
  background: #ff2d55 !important;
  border-color: #ff2d55 !important;
}

#portfolio .slick-dots .slick-active button {
  background: #fff;
  border-color: #fff;
  cursor: default;
  color: #000;
}

/* direction nav */
#portfolio .flex-direction-nav li a {
  display: none;
}

/*play pause*/
.flex-pause {
  color: white;
}

/**
	 * responsive:
	 * testimonial slider
	 */
@media only screen and (max-width:1024px) {
  #portfolio .flex-container {
    max-width: 600px;
  }
}

@media only screen and (max-width:768px) {
  #portfolio .flex-container {
    width: 90%;
  }
}

@media only screen and (max-width:600px) {
  #portfolio .flex-container {
    width: 95%;
  }
}

@media only screen and (max-width:400px) {
  #portfolio .flex-container {
    width: auto;
  }
}

/**
	 * ===================================================================
	 * 5. services
	 * -------------------------------------------------------------------
	 */
#services {
  padding-bottom: 5rem;
}

#services .bgrid {
  margin-bottom: 5rem;
}

.fa-star {
  color: #e62e34;
  padding: 0px 5px;
}

.fa-solid,
.fas {
  padding: 0 6px;
}

.fa-facebook-f,
.fa-linkedin-in {
  color: #0073b0;
}

.fa-solid span {
  display: none;
}

.main-content .col-md-8 ul>li {
  font-weight: bold;
}
a, a:visited {
  color: #B71518;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.port {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.block {
  width: 200px;
  min-height: 50px;
  font-size: .9em;
  line-height: 1.2em;
  margin: 10px;
}

.block img {
  margin: 5px;
}

.block a {
  color: #000;
  text-decoration: none;
  background-color: #ededed !important;
  display: inline-block;
}

.textTitle {
  font-size: 1.5em;
}
.block span {
  background: #f2f2f2;;
}
.textTitle span {
  font-weight: 600;
}
span.bold {
  font-weight: 600;
}
#standartpage h2 {
  font-size: 1.8rem;
    line-height: 1.75;
    color: #000;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 1.6rem;
    text-rendering: optimizeLegibility;
  /*text-transform: uppercase;*/
  font-variant: small-caps;
    font-weight: 600;
}

.sr-only {
  font-size: 14pt;
  color: #000;
  background: #ffffff;

}
#features .text strong, .upper {
  /*text-transform: uppercase;*/
  font-variant: small-caps;
}
#portfolio-slider {
  background: #252124;
}

/* accessibility improvements */
#cSiteURL {
  color: #990000 !important;
}
#portfolio-slick-slider {
  display: none;
}