
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Arial;
  color: #a85d28;
  background-color: #000;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: orange;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .col-lg-3 {
	margin-top:50px;
	width:350px;
}

.contact .info-item i {
  font-size: 20px;
  color: #a85d28;
  float: left;
  width: 44px;
  height: 44px;
  background: #222425;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #a85d28;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #a85d28;
}

.contact .info-item:hover i {
  color: #a85d28;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
