/* root */
:root {
    --main-color: #5A47FB;;
    --color-black: #151515;
    --color-white: #ffffff;

    --font-main: "Proxima Soft";
  }

  /* Font */
  @font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "DIN 2014";
    src: url("../fonts/DIN2014-DemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }



  /* Global styles */
  * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: var(--font-int);
  }

  ul,
  li {
  margin: 0;
  }

  label {
  margin: 0;
  }

  a, input {
    outline: none !important;
  }

  label.error {
  font-size: 12px;
  color: red;
  }

  .container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  }

  @media (max-width: 1300px) {
  .container {
    padding: 0 3rem;
  }
  }
  @media (max-width: 992px) {
  .container {
    padding: 0 2rem;
  }
  }
  @media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
  }

/* settings */
.alert {
    max-width: 384px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    background: var(--main-color); 
    -webkit-column-gap: 20px; 
       -moz-column-gap: 20px; 
            column-gap: 20px;
    
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff
}
.alert p {
    font-size: 14px;
    line-height: 13px;
}
.alert button.close {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    color: #fff;
    background: none;
    border: none !important;
    outline: none !important;
}
.alert button.close span {
    display: block;
    font-size: 40px;
    line-height: 20px;
    margin-bottom: 7px;
}

  /* jumbotron */
  .jumbotron {
  padding-top: 100px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;

  height: calc(100vh - 344px);
  }
  .jumbotron h1,
  .jumbotron .h1 {
  color: #1f3f50;
  }
  .jumbotron p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 200;
  }
  .jumbotron > hr {
  border-top-color: #d5d5d5;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
  }
  @media screen and (max-width: 1200px) {
    .jumbotron {
         height: calc(100vh - 292px);
    }
  }
  @media screen and (max-width: 992px) {
    .jumbotron {
         height: calc(100vh - 252px);
    }
  }
  @media screen and (max-width: 768px) {
    .jumbotron {
         height: calc(100vh - 210px);
    }
  }
  @media screen and (max-width: 576px) {
    .jumbotron {
        height: calc(100vh - 230px);
    }
  }


  @media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 150px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 72px;
  }
  }

  /* section */
  section {
    padding: 90px 0 0;
  }
  @media (max-width: 1200px) {
  section {
    padding: 70px 0 0;
  }
  }
  @media (max-width: 992px) {
  section {
    padding: 50px 0 0;
  }
  }
  @media (max-width: 768px) {
  section {
    padding: 40px 0 0;
  }
  }
  
/* first-section */
.first-section {
    margin-top: 120px;   
}
@media (max-width: 1200px) {
    .first-section {
        margin-top: 106px;   
    }
}
@media (max-width: 992px) {
    .first-section {
        margin-top: 100px;   
    }
}
@media (max-width: 768px) {
    .first-section {
        margin-top: 80px;   
    }
}