body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cofContentHolder {
}

.bullet {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  height: 80vh;
}

.bullet__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  
  z-index: inherit;
  object-position: center;
  object-fit: cover;
}

.bullet__title {
  font-size: 64px;
  font-weight: 600;

  margin: 20px;
  text-align: center;
  font-style: italic;


  color: white;
  position: relative;
  z-index: inherit;
}

.bullet__cover {
  position: absolute;
  z-index: inherit;

  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, .8),
    rgba(0, 0, 0, .1)
  );
}

.serv {
  padding-bottom: 60px;
}

.serv__titleHolder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;
}

.serv__title {
  font-size: 40px;
  font-weight: 600;
  
  position: relative;
  background: white;
  padding: 0 40px;
}

.serv__title_white {
  color: white;
  background-color: #2DA9E9;
}

.serv__desider {
  position: absolute;
  width: 800px;
  height: 1px;
  background: #DBECFF;
  border: none;
}

.serv__desider_white {color: white;}

.srList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  
  margin: 0; padding: 0;
  list-style: none;
}

.srList__imgHolder {
  position: relative;
  justify-content: center;
  align-items: center; 
}

.srList__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  object-position: center;
  filter: blur(5px);
}

.srList__item {
  display: flex;
  flex-direction: column;

  width: 300px;
  margin: 20px; padding: 10px;
  border-radius: 10px;
  overflow: hidden;

  box-sizing: border-box;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .4);

  background: #DBECFF;

  transition: .3s;
}

.srList__item:hover {
  transform: scale(1.04);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .6);
  background: #2DA9E9;
  color: white;
}

.srList__item:hover .srList__link {
  color: white;
}

.srList__img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
}

.srList__title {
  text-align: center;
  text-transform: uppercase;
}

.srList__desc {
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 400;

  flex-grow: 1;
}

.srList__link {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2DA9E9;
  text-decoration: none;
  transition: .3s;
  padding: 10px 0;
}

.rFilter {
  background: #2DA9E9;
}

.rFilter__desc {
  color: white;
  text-align: center;
  font-size: 20px;
}

.rFilter__holder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.rFilter__list {
  display: flex;
  background: #DBECFF;
  border-radius: 20px;
  overflow: hidden;

  list-style: none;
  margin: 0; padding: 0;
}

.rFilter__item {}
.rFilter__link {
  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  text-align: center;
  font-size: 14px;
  color: inherit;

  width: 150px; height: 80px;
  transition: .3s;
}

.rFilter__link:hover {
  background: white;
}


.cofMap {
  display: flex;
  height: 600px;
}

.cofMap__contacts {
  width: 400px;
}

.cofCont {
  margin: 0; padding: 0 30px;
  list-style: none;
}

.cofCont__item {
  margin: 30px 0;
}

.cofCont__title {
  margin: 0; padding: 0;
  font-weight: 600;
}

.cofMap__desc {
  margin: 10px 0;
  padding: 0; 
}

.cofMap__frame {
  flex-grow: 1;
}

.cofContentHolder {
  max-width: 1200px;
  margin: 40px auto;
  min-height: 90vh;
}