/**************** General styles ******************** *
 *  1. html, body
 *  2. Containers
 *  3. Global styles
****************************************************/

/**** 1. html, body ****/

html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    background-image: url(../../img/Bg-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/**** 2. Containers ****/
.container {
    max-width: 1180px;
    padding: 0 15px;
}
.row {
  margin-bottom: 0;
}

/**** 3. Global styles ****/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a,
button,
.transition {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.no-transition {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}
*:focus {
    outline: none !important;
}