.container {
  max-width: 1587px;
  width: 90%;
}

.container.another{
  max-width: 1287px;
  width: 75%;
}

.container.another2{
  max-width: 1387px;
  width: 85%;
}

main{
  min-height: 80vh;
}

.btn1 {
  border-radius: 50px;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn1 span {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #FFFFFF;
}
.btn1 svg {
  margin-left: 19px;
}

.btn1:hover, .wp-email-capture-submit:hover, .header_right_btn:hover{
  animation-name: btn_push;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;  
}



@keyframes btn_push{50%{transform:scale(0.8)}100%{transform:scale(1)}}

.subm_bg {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position-x: calc(100% - 50px);
  background-position-y: center;
}