*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    background-color: #F2F2F2;
}

main{
  padding: 220px 0 50px 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;justify-content: center;
}


@media screen and (max-width: 1500px) {

    .container {
        max-width: 1224px !important;
    } 

    main{
       padding: 150px 0 50px 0 ;
    }
}


@media screen and (max-width: 1024px){
  main{
    padding: 100px 0 50px 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    /* list-style: none; */
    list-style-position: inside;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    transition: color .2s linear, text-decoration .2s linear;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

a:hover {
    transition: color .2s linear;
    text-decoration: none !important;
}

h1.section__title{
  font-size: 36px;
  font-weight: 700;
    color: var(--middleBlue) !important;
    margin-bottom: 30px;
    text-transform: uppercase;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none !important;
    outline: none !important;
    background-color: transparent;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd;
}

button {
    cursor: pointer !important;
}

textarea {
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

section {
    position: relative;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    /* justify-content: center; */
}

.container {
    width: 100%;
    max-width: 1440px;
}

.footer {
    margin-top: auto;
}


.gear{
  width: 100px;
  height: 100px;
}
