 .container {
     padding: 0 40px;
 }

 body,
 html {
     overflow-x: hidden;
 }

 .no-select {
     user-select: none;
     -webkit-user-drag: none;
 }


 /* parallax */

 .parallax-section {
     position: relative;
     overflow: hidden;
 }

 .parallax-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 120%;
     object-fit: cover;
     transition: transform 0.1s ease-out;
 }

 .transform-transition {
     transition: transform 0.1s ease-out;
 }