@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* CSS Reset */
html,legend{color:#030712}html{background:#FFF}blockquote,body,button,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,pre,select,td,textarea,th,ul{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,button,caption,cite,code,dfn,em,input,optgroup,option,select,strong,textarea,th,var{font:inherit}del,ins{text-decoration:none}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}q:after,q:before{content:''}abbr,acronym{border:0;font-variant:normal}sub,sup{vertical-align:baseline}

* {
  outline: none;
  box-sizing: border-box;
}

a, a:visited {
  text-decoration: none;
}
a:visited {
  /* color:  */
}

strong, b {
  font-weight: 700;
}

img {
  vertical-align: middle;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 480px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 8px;
  }
}

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.5;
  font-optical-sizing: auto;
  overflow-y: auto;
  color: #595d5a;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main {
  padding: 4rem 2rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 70rem;
}

.logo {
  display: flex;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}
.logo .sep {
  display: flex;
  margin: 0 1rem;
  height: 6rem;
  width: 1px;
  background: #e6e6e6;
}
.logo p {
  padding-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .logo p, .logo .sep {
    display: none;
  }
}
.main-section {
  text-align: center;
  margin-top: 4rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.alert {
  background: #faedef;
  position: relative;
  border-radius: 0;
  font-size: 1.8rem;
  color: #000;
  padding: 1.5rem 1.5rem 1.5rem 7.2rem;
  min-height: 3.2rem;
  margin-top: 2rem;
}
.alert::before {
  width: 5.5rem;
  height: 100%;
  content: '';
  background: #f7e0e4 url(/assets/danger.png) no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
}

.big-button {
  position: relative;
  background-color: #dc8907;
  background: #dc8907 url(/assets/order.png) no-repeat 4rem center;
  padding: 2.5rem 10rem 2.5rem 9rem;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  width: auto;
  border-radius: unset;
  box-shadow: unset;
  margin-bottom: 2rem;
  border: none;
  cursor: pointer;
}
.big-button::before {
  content: ' ';
  width: 4.5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(/assets/services-arrow-white.png) no-repeat center center #e09520;
}