@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: #f9f9f9;
  padding:0;
  margin: 0;
}
img {
  max-width: 180px;
  height: auto;
  border-right: 1px solid #dedede;
  padding: 0 40px 0 0;
}
div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #777;
  font-size: 13px;
  width: 100%;
  height: 100%;
  text-align: left;
  gap: 50px;
}

@media screen and (max-width:990px) {
  div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #777;
    font-size: 12px;
    /* width: 100%;
    height: 100%; */
    text-align: center;
    gap: 50px;
    line-height: 20px;
}
img {
  border-right: none;
  padding: 0;
}
 .dnone {
  display: none;
 }
}

.vwa {
  position: absolute;
  text-decoration: none;
  font-size: 12px;
  color: #bbb;
  bottom: 20px;
}

a {
  color: #777;
  text-decoration:none;
  transition: .5s linear;
}

a:hover {
  color: #222;
  transition: .5s linear;
}


.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		opacity: 1\9;
	}
	to {
		opacity: 1;
	}
}
.fade {
	opacity: 0;
	animation: fadeIn ease-in 1;
	animation-fill-mode: forwards;
	animation-duration: 2s;
}

.fade.fadeOne {
	animation-delay: 1.7s;
}

.fade.fadeTwo {
	animation-delay: 2.2s;
}