/*
Theme Name: Amin Associates
Author: Param Parmar
Version: 1.0
*/

/*======================================
  GLOBAL RESET
======================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    margin:0;
    padding:0;
    font-family:"Futura", "Futura PT", "Trebuchet MS", Arial, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#222;
    background:#fff;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/*======================================
  TYPOGRAPHY
======================================*/

h1,h2,h3,h4,h5,h6{
    margin:0;
    font-family:inherit;
    font-weight:600;
    line-height:1.2;
}

p{
    margin:0 0 1rem;
}

a{
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

ul,
ol{
    list-style:none;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

button,
input,
textarea,
select{
    font:inherit;
}

table{
    border-collapse:collapse;
    width:100%;
}