@import url('/style/css/amstelvaralpha.css');
@import url('/style/css/collapse.css');
@import url('/style/css/hint.css');
@import url('/style/css/fa/css/all.css');
@import url('/style/css/bootstrap.min.css');
:root {
  --white-color:                  #ffffff;
  --primary-color:                #087e8b;
  --secondary-color:              #0b3954;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;
  --featured-border-color:        #f8f9fa;
  --color-tariffs:                #087e8b;

  --body-font-family:             Verdana,Geneva,sans-serif; 

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  14px;
  --menu-font-size:               12px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}
.map-l {
	 position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.lang-link {
	color: var(--white-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-bold);
	margin-right: 15px;
	transition: all 0.3s;
}
.lang-link:hover {
	color: #bfd7ea;
}
.is-sticky .lang-link {
	color: var(--secondary-color);
}
.is-sticky .lang-link:hover {
	color: var(--primary-color);
}
body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
	overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}
.avatar-image-small {
  width: 60px;
  height: 60px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  color: var(--white-color);
  font-size: 28px;
  transition: all 0.3s;

}

.navbar-icon:hover {
	color: #bfd7ea;
}

.is-sticky .navbar-icon {
  color: var(--secondary-color);
}

.is-sticky .navbar-icon:hover {
  color: var(--primary-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: none;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background: none;
	bottom: 3px;
	position: relative;
	border: 2px solid #fff;
	margin-left: 15px;
}

.custom-link:hover {
	color: var(--secondary-color);
	background: #fff;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
  transition: all 0.3s;
}

.is-sticky .navbar-brand {
  color: var(--secondary-color);
}

.is-sticky .navbar-brand i {
  color: var(--secondary-color);

}

.is-sticky .navbar-brand:hover i {
  color: var(--secondary-color);
}

.is-sticky .navbar-brand:hover {
	color: var(--primary-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}
.is-sticky .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}
.is-sticky .navbar-nav .nav-link.active::after, 
.is-sticky .navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.is-sticky .navbar-nav .nav-link.active, 
.is-sticky .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand {
  color: var(--white-color);
}

.navbar-brand:hover {
	color: #bfd7ea;
}
.navbar-brand i {
	color: #bfd7ea;
	margin-right: 10px;
}
.navbar-brand:hover i {
	color: #bfd7ea;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 0%;
  height: 2px;
  -webkit-transition: 0.4s all ease;
	-ms-transition: 0.4s all ease;
	transition: all 0.4s;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  background: #bfd7ea;
  	-webkit-transition: 0.4s background-color ease;
	-ms-transition: 0.4s background-color ease;
	transition: 0.4s background-color ease;
	transition: all 0.4s;
	width: 100%;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #bfd7ea;
  -webkit-transition: 0.4s background-color ease;
	-ms-transition: 0.4s background-color ease;
	transition: 0.4s background-color ease;
	transition: all 0.4s;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-2 {
  background: linear-gradient(45deg, #0b3954, #087e8b, #19ac9d);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 100px;
}
.hero-3 {
  background: linear-gradient(45deg, #0b3954, #087e8b, #19ac9d);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 62px;
}

@media  screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
  color: #085b8c;
}

.hero-title {
	font-size: 22px;
	transition: all 0.3s;
	line-height: 32px;
}

.hero h2 {
	font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 50px;
  right: 400px;
  width: 100%;
  max-width: 200px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
	height: 120px;
}

.clients-image {
  display: block;
  max-width: 80px;
  margin: auto;
  transition: all ease 0.2s;
  filter: grayscale(100%);
}

.clients-image:hover {
  transform: scale(1.3);
  filter: none;
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 160px;
  resize: none;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
}
.social-icon-link.cont {
	background: #fff;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 200px;
  }
  
  .hero-title,
	.hero h2 {
	  font-size: 24px;
	}
}

@media screen and (max-width: 992px) {
	.col-lg-3 {
		display: none;
	}
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }
  .navbar-brand,
  .navbar-brand i,
  .navbar-brand:hover i {
	  color: var(--secondary-color);
  }

  .navbar-brand:hover {
    color: var(--primary-color);
  }

  .navbar-icon {
    color: var(--secondary-color);
    font-size: 25px;
  }
   .navbar-icon:hover {
    color: var(--primary-color);
  }
  .lang-link {
	color: var(--secondary-color);
}
.lang-link:hover {
	color: var(--primary-color);
}

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }
  .navbar .custom-btn:hover {
    border-color: var(--secondary-color);
	background: var(--secondary-color);
    color: var(--white-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--secondary-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active  {
    color: var(--secondary-color);
  }
  
  .navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

  .hero {
    padding-top: 200px;
    padding-bottom: 400px;
  }

  .hero-text {
    top: 100px;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}
@media screen and (max-width: 1199.33px) {
  .hero-title {
	font-size: 20px;
}
}
@media screen and (max-width: 770px) {
  .hero-title {
	font-size: 16px;
}
.hero h2 {
 font-size: 28px;
}
}
@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
  .hero-title {
	font-size: 16px;
}
.hero h2 {
 font-size: 18px;
}
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: 22px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}
.container-tariffs {
  max-width: 1320px;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.column-tariffs {
  flex: 25%;
  padding: 10px;
  width: calc(33.3% - 30px);
  box-sizing: border-box;
}
.column-tariffs:nth-of-type(1),
.column-tariffs:nth-of-type(5),
.column-tariffs:nth-of-type(9),
.column-tariffs:nth-of-type(13),
.column-tariffs:nth-of-type(17),
.column-tariffs:nth-of-type(21) {
  padding-left: 0;
}
.column-tariffs:nth-of-type(4),
.column-tariffs:nth-of-type(8),
.column-tariffs:nth-of-type(12),
.column-tariffs:nth-of-type(16),
.column-tariffs:nth-of-type(20),
.column-tariffs:nth-of-type(24) {
  padding-right: 0;
}
@media screen and (max-width: 1399.33px) {
  .column-tariffs {
    flex: 50%;
    display: block;
  }
  .column-tariffs:nth-of-type(even) {
  padding-right: 0;
}
.column-tariffs:nth-of-type(odd) {
  padding-left: 0;
}
}
@media screen and (max-width: 700px) {
  .column-tariffs {
    flex: 100%;
    display: block;
	padding: 10px 0;
  }
}

.pricing-card {
  -webkit-transition: 0.4s background-color ease;
  -ms-transition: 0.4s background-color ease;
  transition: 0.4s background-color ease;
  height: 480px;
  background-color: white;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
}
.pricing-card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
.pricing-card .popular {
	text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  padding: 7px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #eb3b5a;
  color: white;
  font-size: 12px;
  z-index: 1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.pricing-card .badge-box {
  padding: 0 40px;

}
.pricing-card .badge-box span {
	font-size: 12px;
	cursor: default;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 25px;
  overflow: hidden;
}
.pricing-card .badge-box.home span {
  border: 1px solid #00a7e1;
  color: #00a7e1;
}
.pricing-card .badge-box.vps span {
  border: 1px solid #00a7e1;
  color: #00a7e1;
}
.pricing-card .badge-box.sata span {
  border: 1px solid #00a7e1;
  color: #00a7e1;
}
.pricing-card .badge-box.ssd span {
  border: 1px solid #60d394;
  color: #60d394;
}
.pricing-card .badge-box.nvme span {
  border: 1px solid #eb5e55;
  color: #eb5e55;
}
.pricing-card .badge-box.cpu span {
  border: 1px solid #2b9348;
  color: #2b9348;
}
.pricing-card .badge-box.promo span {
  border: 1px solid #eb5e55;
  color: #eb5e55;
}
.pricing-card .pricing-header {
  width: 100%;
  height: 100px;
  position: relative;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
}
.pricing-card.home .pricing-header {
	background: #b6cae0;
}
.pricing-card.vps .pricing-header {
	background: #b6cae0;
}
.pricing-card.dedicated .pricing-header {
	background: #ede0d4;
}
.pricing-card.cpu .pricing-header {
	background: #b6cae0;
}
.pricing-card.promo .pricing-header {
	background: #b6cae0;
}
.pricing-card .pricing-header .plan-title {
  font-size: 16px;
  font-weight: bold;
  color: #054a91;
  top: 15px;
  position: relative;
}
.pricing-card .pricing-header .price-circle {
}
.pricing-card.home .pricing-header .price-circle {

}
.pricing-card.vps .pricing-header .price-circle {

}
.pricing-card.dedicated .pricing-header .price-circle {

}
.pricing-card.cpu .pricing-header .price-circle {
}
.pricing-card.promo .pricing-header .price-circle {
}
.pricing-card:hover .pricing-header .price-circle {
}
.pricing-card .pricing-header .price-circle .info {
  font-size: 12px;
  color: #033860;
  margin-top: 5px;
}
.pricing-card .pricing-header .price-circle .price-title {
  font-size: 26px;
  color: #033860;
  top: 15px;
  position: relative;
}
.pricing-card .pricing-header .price-circle .price-title small {
  font-size: 18px;
}
.pricing-card .pricing-header h2 {
  position: relative;
  top: 40%;
  color: #fff;
}
.pricing-card .buy-button-box {
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pricing-card .buy-button-box .buy-now {
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 10px;
}
.pricing-card .buy-button-box .buy-now:hover {
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.4);
}
.pricing-card.home .buy-button-box .buy-now {
	background: var(--color-tariffs);
	color: #ffffff;
	border: 2px solid var(--color-tariffs);
}
.pricing-card.home .buy-button-box .buy-now:hover {
	background: #ffffff;
	color: var(--color-tariffs);
	border: 2px solid var(--color-tariffs);
}
.pricing-card.vps .buy-button-box .buy-now {
	background: #3e7cb1;
	color: #ffffff;
	border: 2px solid #3e7cb1;
}
.pricing-card.vps .buy-button-box .buy-now:hover {
	background: #ffffff;
	color: #3e7cb1;
	border: 2px solid #3e7cb1;
}
.pricing-card.vps .buy-button-box .buy-now.not {
	background: #e5e5e5;
	color: #ffffff;
	border: 2px solid #e5e5e5;
}
.pricing-card.dedicated .buy-button-box .buy-now {
	background: #9c6644;
	color: #ffffff;
	border: 2px solid #9c6644;
}
.pricing-card.dedicated .buy-button-box .buy-now:hover {
	background: #ffffff;
	color: #9c6644;
	border: 2px solid #9c6644;
}
.pricing-card.dedicated .buy-button-box .buy-now.n {
	background: #ccc;
	color: #ffffff;
	border: 2px solid #ccc;
	cursor: not-allowed;
}
.pricing-card.dedicated .buy-button-box .buy-now.n:hover {
	background: #ccc;
	color: #ffffff;
	border: 2px solid #ccc;
	cursor: not-allowed;
}
.pricing-card.cpu .buy-button-box .buy-now {
	color: #3e7cb1;
	border: 2px solid #3e7cb1;
}
.pricing-card.cpu .buy-button-box .buy-now:hover {
	background: #3e7cb1;
	color: #ffffff;
}
.pricing-card.promo .buy-button-box .buy-now {
	color: #3e7cb1;
	border: 2px solid #3e7cb1;
}
.pricing-card.promo .buy-button-box .buy-now:hover {
	background: #3e7cb1;
	color: #ffffff;
}
.index-tarrifs{
	display: table;
	width: 100%;
}
.index-tarrifs-row {
	display: table-row;
}
.index-tarrifs-row .index-tarrifs-cell {
	color: #8d99ae;
	text-align: left;
	display: table-cell;
	padding: 10px 5px 10px 0;

}
.index-tarrifs-cell strong {
	color: #033860;
	font-weight: normal;
}
.col-lg-6.col-12 .who-div {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: 0.2s background-color ease;
	-ms-transition: 0.2s background-color ease;
	transition: 0.2s background-color ease;
	transition: all 0.2s;
	padding: 10px 15px;
	cursor: default;
	background: #fff;
	margin-bottom: 20px;
}
.col-lg-6.col-12 .who-div:hover {
	background: #087e8b;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
	transform: scale(1.05);
}
.col-lg-6.col-12 .who-div i {
	margin-top: 10px;
	font-size: 50px;
	position: absolute;
	color: #087e8b;
	-webkit-transition: 0.2s background-color ease;
	-ms-transition: 0.2s background-color ease;
	transition: 0.2s background-color ease;
	transition: all 0.2s;
}
.col-lg-6.col-12 .who-div:hover i {
	color: #fff;
}
.col-lg-6.col-12 .who-div strong {
	font-size: 18px;
	padding-left: 65px;
	color: var(--secondary-color);
}
.col-lg-6.col-12 .who-div:hover strong {
	color: #e6e8e6;
}
.col-lg-6.col-12 .who-div p {
	padding-left:65px;
	margin-bottom:0;
}
.col-lg-6.col-12 .who-div:hover p {
	color: #fff;
}

.c-form {
    margin: auto;
  font-size: 16px;
  color: #fff;
  position: relative;
  max-width: 24em;
  height: 22em;
  padding: 1.5em 2em 0;
  background: linear-gradient(to top right, #087e8b, #44c9ca);
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.c-form__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.c-form__title {
  text-align: center;
  font-weight: 600;
}
.c-formGroup {
  display: block;
  height: 3em;
  position: relative;
  cursor: pointer;
}
.c-formGroup__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3em;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  transform-origin: center bottom;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.c-formGroup__icon svg {
  height: 1.1em;
  width: 1.1em;
  fill: #a9a9a9;
}
.c-formGroup__input {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  padding: 0 1em 0 3em;
  outline: 0;
  border: 0.15em solid transparent;
  border-radius: 0.4em;
  font: inherit;
  font-weight: 700;
  color: #0b3954;
  background-color: #bfd7ea;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  transition: height 0.3s, background 0.3s;
}
.c-formGroup__input::placeholder {
  opacity: 0;
}
.c-formGroup__input:focus, .c-formGroup__input:not(:placeholder-shown) {
  pointer-events: initial;
  cursor: text;
  height: 100%;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.c-formGroup__input:focus ~ .c-formGroup__icon, .c-formGroup__input:not(:placeholder-shown) ~ .c-formGroup__icon {
  transform: scale(1);
  opacity: 1;
}
.c-formGroup__input:focus ~ .c-formGroup__title, .c-formGroup__input:not(:placeholder-shown) ~ .c-formGroup__title {
  top: -40%;
  opacity: 0.7;
  font-size: 0.8em;
}
.c-formGroup__title {
  position: absolute;
  top: 40%;
  margin-left: 0.25em;
  font-size: 0.9em;
  font-weight: 400;
  transition: top 0.3s, font-size 0.3s;
}
.c-form__link {
  float: right;
  text-decoration: none;
  font-size: 0.8em;
  color: #fff;
  outline: 0;
}
.c-form__link:hover {
  float: right;
  text-decoration: none;
  font-size: 0.8em;
  color: #bfd7ea;
  outline: 0;
}
.c-form__button {
  font: inherit;
  font-size: 1.2em;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3em;
  border: 0;
  outline: 0;
  color: inherit;
  cursor: pointer;
  background-color: #0b3954;
  transition: background 0.3s;
  border-radius: 0 0 20px 20px;
}
.u-spacer {
  height: 3em;
}
.u-spacer--sm {
  height: 2em;
}
.u-ripple {
  background-position: center;
}
.u-ripple:hover {
  background: #fff radial-gradient(circle, transparent 1%, #fff 1%) center/15000%;
}
.u-ripple:active {
  background-color: #fff;
  background-size: 100%;
  transition: background 0s;
}
.u-ripple:focus {
	background-color: #fff;
}
.u-ripple-2 {
  background-position: center;
}
.u-ripple-2:hover {
  background: #215471 radial-gradient(circle, transparent 1%, #215471 1%) center/15000%;
}
.u-ripple-2:active {
  background-color: #215471;
  background-size: 100%;
  transition: background 0s;
}

      .menu-billing {
		  border-radius: 20px;
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
        background-color: #fff;
		border: 1px solid #ced4da;
      }
      .menu-billing li a {
		  border-bottom: 1px solid #ccc;
		  border-top: 1px solid #fff;
        display: block;
        color: #000;
        padding: 12px 16px;
        text-decoration: none;
      }
      .menu-billing li a:hover {
        background-color: #dee2e6;
      }
	  .menu-billing li:first-child a {
		  border-top: none;
		  border-top-left-radius: 20px;
		  border-top-right-radius: 20px;
	  }
	  .menu-billing li:last-child a {
		  border-bottom: none;
		  border-bottom-left-radius: 20px;
		  border-bottom-right-radius: 20px;
	  }
      .menu-billing .icon {
        margin-right: 10px;
      }
	  .menu-billing .active {
		  background-color: #dee2e6;
		border-bottom: 1px solid #dee2e6;
		  border-top: 1px solid #dee2e6;
	  }
.user-data {
	padding: 12px 16px;
	border-radius: 20px;
        list-style-type: none;
        margin: 0;
        width: 100%;
	border: 1px solid #ced4da;
	margin-bottom: 15px;
	background-color: #fff;
	font-size: 14px;
}
.user-data div {
	color: #adb5bd;
}
.user-data div strong {
	color: #000;
}
.user-data div a {
	font-size: 16px;
}
.billing-header {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
	color: #6c757d;
}
.accordion-2 .accordion-item-2 {
  border-bottom: 1px solid #e5e5e5;
}
.accordion-2 .accordion-item-2 button[aria-expanded='true'] {
  border-bottom: 1px solid #19ac9d;
}
.accordion-2 button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion-2 button:hover {
  cursor: pointer;
  color: #19ac9d;
}
.accordion-2 button:hover::after, .accordion-2 button:focus::after {
  cursor: pointer;
  color: #19ac9d;
  border: 1px solid #19ac9d;
}
.accordion-2 button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion-2 button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion-2 button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9.5px;
  left: 5.5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion-2 button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5.5px;
  left: 9.5px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion-2 button[aria-expanded='true'] {
  color: #19ac9d;
}
.accordion-2 button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion-2 button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion-2 .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion-2 .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
.tariffs-dop {
	font-size: 18px;
	margin-top: 15px;
	text-align: center;
	color: #0b3954;
}
.tariffs-dop a {
	color: #3e7cb1;
}
.tariffs-dop a:hover {
	opacity: 0.8;
}
.pricing-card-vpn {
	display: table;
  -webkit-transition: 0.4s background-color ease;
  -ms-transition: 0.4s background-color ease;
  transition: 0.4s background-color ease;
  background-color: white;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  transition: all 0.4s;
  width: 100%;
  height: 200px;
}
.pricing-card-vpn:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
.pricing-card-vpn .badge-box {

}
.pricing-card-vpn .badge-box span {
  cursor: default;
  padding: 4px 12px;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #00a7e1;
  color: #00a7e1;
}
.pricing-card-vpn .pricing-header {
  width: 20%;
  display:table-cell;
  background: #84488e;
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  vertical-align: middle;
}
.pricing-card-vpn .description {
	display: table-cell;
	width: 60%;
	padding: 10px 20px;
}
.pricing-card-vpn .pricing-header .plan-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
}
.pricing-card-vpn .pricing-header .price-circle {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 10px solid #84488e;
  margin-left: calc(50% - 60px);
  background-color: white;
  transition: all 0.4s;
}
.pricing-card-vpn:hover .pricing-header .price-circle {
  border-width: 5px;
}
.pricing-card-vpn .pricing-header .price-circle .info {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: gray;
}
.pricing-card-vpn .pricing-header .price-circle .price-title {
  font-size: 26px;
  font-weight: bold;
}
.pricing-card-vpn .pricing-header .price-circle .price-title small {
  font-size: 18px;
}
.pricing-card-vpn .pricing-header h2 {
  position: relative;
  top: 40%;
  color: #fff;
}
.pricing-card-vpn .buy-button-box {
  width: 20%;
  display: table-cell;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  vertical-align: middle;
}
.pricing-card-vpn .buy-button-box .buy-now {
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 20px;
  color: #84488e;
  border: 2px solid #84488e;
  margin-right: 20px;
}
.pricing-card-vpn .buy-button-box .buy-now:hover {
	background: #84488e;
	color: #ffffff;
}
@media  screen and (max-width: 767px) {
.pricing-card-vpn {
  display:block;
  position: relative;
  height: 650px;
}
.pricing-card-vpn:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.pricing-card-vpn .badge-box {
  padding: 0 40px;
  margin-top: 80px;
}
.pricing-card-vpn .badge-box span {
  cursor: default;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #00a7e1;
}
.pricing-card-vpn .pricing-header {
	display:block;
  width: 100%;
  height: 150px;
  position: relative;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
}
.pricing-card-vpn .description {
	display:block;
	margin-top: 70px;
	width: 100%;
}
.pricing-card-vpn .pricing-header .plan-title {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  top: 25%;
}
.pricing-card-vpn .pricing-header .price-circle {
	margin-left: auto;
  width: calc(33.3% - 30px);
  width: 120px;
  height: 120px;
  border-radius: 100%;
  left: calc(50% - 60px);
  top: 60%;
  position: absolute;
  transition: all 0.4s;
}
.pricing-card-vpn:hover .pricing-header .price-circle {
  border-width: 5px;
}
.pricing-card-vpn .pricing-header .price-circle .info {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
.pricing-card-vpn .pricing-header .price-circle .price-title {
  font-size: 26px;
  font-weight: bold;
}
.pricing-card-vpn .pricing-header .price-circle .price-title small {
  font-size: 18px;
}
.pricing-card-vpn .pricing-header h2 {
  position: relative;
  top: 40%;
}
.pricing-card-vpn .buy-button-box {
  width: 100%;
  float: left;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  display:block;
}
.pricing-card-vpn .buy-button-box .buy-now {
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 20px;
  margin-top: 20px;
}
.pricing-card-vpn .buy-button-box .buy-now:hover {
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.4);
}
}