* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* ANIMATIONS */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Back To Top */
#buttonToTop {
  display: inline-block;
  background-color: #cbb07e;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#buttonToTop i::before {
  color: #ffffff;
}
#buttonToTop::after {
  content: "";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 36px;
  color: #fff;
}
#buttonToTop:hover {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#buttonToTop:hover i::before {
  color: #cbb07e;
}
#buttonToTop:active {
  background-color: #555;
}
#buttonToTop.showTheTop {
  opacity: 1;
  visibility: visible;
}

/* NAVBAR */
.sticky-menu {
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  animation: 200ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 9999;
}
#menu {
  display: none;
}
#menu {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.bar,
.change .bar {
  background-color: #cbb07e;
}

.bar {
  height: 2px;
  width: 25px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
}
#bar1 {
  transform: translateY(-2px);
}
#bar3 {
  transform: translateY(2px);
}
#menu-bar {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0;
}
.change #bar1 {
  transform: translateY(2px) rotateZ(-45deg);
}
.change #bar3 {
  transform: translateY(-2px) rotate(45deg);
}
.change #bar2 {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  #menu {
    display: inline-block;
  }
  #menu {
    float: right;
    margin: 25px 20px;
  }
  #menu-bar {
    width: 100%;
    padding: 10px 0;
  }
}
.navbar {
  padding: 0 !important;
  box-shadow: 0px 1px 10px #999;
}
.navbar-brand{
    padding: 0 !important;
}
.nav-item > .active {
  color: #cbb07e !important;
}

.nav-link {
  font-size: 16px !important;
  padding: 38px 17px !important;
  font-weight: 500 !important;
  color: #13263e!important;
  position: relative;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
  cursor: pointer;
  user-select: none;
}
@media only screen and (max-width: 992px) {
  .nav-link {
    padding: 15px 10px !important;
    border-bottom: 1px solid #323c6f !important;
    text-align: center;
  }
  .nav-border {
    border-top: 1px solid #323c6f !important;
  }
}
.nav-link:focus {
  color: #cbb07e!important;
}
.nav-link:before,
.nav-link:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.nav-link:hover {
  color: #ffffff !important;
  transition-delay: 0.2s !important;
}

.nav-link:hover:before {
  transition-delay: 0s;
}

.nav-link:hover:after {
  background: #cdb07f;
  transition-delay: 0.2s;
}
/* From Top */
.from-top i::before {
  margin-left: 0.25rem;
  font-weight: 900;
  font-size: 16px;
}
.from-top:before,
.from-top:after {
  left: 0;
  height: 0;
  width: 100%;
}

.from-top:before {
  bottom: 0;
  border: 1px solid #cdb07f;
  border-top: 0;
  border-bottom: 0;
}

.from-top:after {
  top: 0;
  height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
  height: 100%;
  background-image: url('images/logodns.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  b
}
/* STICKY BUTTONS */
@media only screen and (max-width: 480px) {
  .call-btn {
    display: none;
  }
}
.call-btn {
  position: fixed;
  right: -4px;
  z-index: 99;
}
.call-btn a:hover {
  text-decoration: none !important;
  right: 0;
}
.call-btn .call-btn-inner {
  width: 350px;
  position: absolute;
  right: -295px;
  background: #fff;
  top: 300px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner span.call-icon {
  color: #fff;
  background-color: #cbb07e;
  font-size: 32px;
  padding: 8px 12px 6px 14px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner span {
  color: #333;
  font-size: 16px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}

.call-btn .call-btn-inner-wp {
  width: 240px;
  position: absolute;
  right: -185px;
  background: #fff;
  top: 370px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner-wp span.call-icon {
  color: #fff;
  background-color: #25d366;
  font-size: 32px;
  padding: 8px 12px 6px 14px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner-wp span {
  color: #333;
  font-size: 18px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 25px;
}
.call-btn .call-btn-inner-phone {
  width: 240px;
  position: absolute;
  right: -185px;
  background: #fff;
  top: 230px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner-phone span.call-icon {
  color: #fff;
  background-color: #13263e;
  font-size: 32px;
  padding: 8px 12px 6px 14px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner-phone span {
  color: #333;
  font-size: 18px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 25px;
}
/* ABOUT US */
.main-title{
  position: relative;
  text-align: start;
  padding: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: #cbb07e;
}
.main-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  transform: translateX(-50%);
  width: 65px;
  height: 2px;
  background-color: #cbb07e;
}
.sub-title{
  text-align: start;
  padding: 10px 0;
  font-size: 32px;
  font-weight: 700;
  color: #13263e;
}
.main-text{
  text-align: start;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #13263e;
}
.flat-text{
  text-align: start;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  color: #13263e;
}
.contact-info{
  border: 1px solid #13263e;
  border-radius: 8px;
  margin: 30px 0;
  padding: 40px 40px 20px 40px;
}
.contact-part{
  padding: 20px;
}
.contact-part span{
  display: flex;
  gap: 0.5rem;
  letter-spacing: 2px;
  font-size: 20px;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 5px;
  color: #cbb07e;
  font-weight: 700;
}
.contact-part span i{
  font-size: 28px;
}
.contact-part a{
  margin-bottom: 0;
  font-size: 18px;
  text-decoration: none;
  color: #13263e;
  font-weight: 600;
}
.contact-part p{
  font-size: 18px;
  color: #13263e;
  font-weight: 600;
}

@media only screen and (max-width:480px){
.contact-info{
  padding: 10px;
  margin: 15px 0;
}
.contact-form>.contact-info{
  padding: 30px;
}

}
/* FORM */
.form-control{
  border-bottom: 1px solid #13263e !important;
  font-size: 16px !important;
  border-radius: 0px !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  -moz-appearance: textfield !important; 
  -webkit-appearance: none !important; 
  appearance: none !important;
}
.form-control::-webkit-inner-spin-button, 
.form-control::-webkit-outer-spin-button {
  -webkit-appearance: none; 
  margin: 0;
}
.form-control::placeholder{
  font-size: 14px !important;
}
.form-control:focus{
  box-shadow: none !important;
  border-bottom: 1px solid #cbb07e !important;
}
.form-button{
  color: #fff;
  background-color: #cbb07e;
  font-size: 14px;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
}
.message-area{
  height: 80px !important;
}
@media only screen and (max-width:480px){
  .message-area{
    height: 150px !important;
  }
}
/* MAPS */
.google-maps{
  width: 100%;
  height: 540px;
}
/* SERVICES */
.services{
  width: 100%;
  height: auto;
  border: 2px solid #cbb07e;
  text-align: center;
  padding: 50px;
  margin-bottom: 25px;
  text-decoration: none;
}
.services span{
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #cbb07e;
}
.services:hover{
  background-color: #cbb07e;
}
.services:hover span {
  color: #ffffff;
  background-color: #cbb07e;
  border: 1px solid #fff;
  padding: 15px;
}
@media only screen and (max-width:480px){
  .services{
    padding: 25px;
    margin-bottom: 10px;
  }
  .services span{
    font-size: 16px;
  }
}