
/* Font Include */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');

/* Normalization */
html, body {
    /* Set default font weight to Lato Light (300) */
    font-weight: 300;
    line-height: 1.6; /* Increased for better readability */
    font-family: 'Lato', sans-serif; /* Ensure Lato is the default font */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Headings Styles */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2; /* Adjusted for better spacing */
    font-weight: 700; /* Use Lato Bold (700) for headings */
    color: #000000; /* Headings color */
    font-family: 'Lato', sans-serif; /* Ensure Lato is used */
}

/* Paragraph Styles */
p {
    font-size: 16px; /* Increased font size for better readability */
    font-weight: 300; /* Use Lato Light (300) for paragraphs */
    color: #000000; /* Paragraph text color */
    line-height: 1.6; /* Improved line-height for readability */
    letter-spacing: 0.25px; /* Slightly reduced letter spacing */
    font-family: 'Lato', sans-serif; /* Ensure Lato is used */
    margin-bottom: 1rem; /* Add space below paragraphs */
}

ul,ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
a:hover,a:focus{
    color: inherit;
    text-decoration: none;
    outline: 0;
}
a{
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: inline-block;
    text-decoration: none;
}

.defaultLink.whiteDefaultLink span {
    color: #FFF;
}
.defaultLink.whiteDefaultLink span:before{
    background: #FFF none repeat scroll 0 0;
}
.defaultLink.whiteDefaultLink span:after{
    background: #FFF none repeat scroll 0 0;
}

img{
    max-width: 100%;
    height: auto;
}
/* Common Content */
.titleArea {
    display: table;
    left: -32px;
    margin: auto;
    position: absolute;
    top: 90px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: auto;
}
.commonTittle{
    color: #000000;
    font-size: 36px;
    letter-spacing: 10.8px;
    padding-bottom: 22px;
}
.subTitle{
    font-size: 12px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    font-weight: 400;
    font-family: 'Lato', serif;
    padding-right: 12px;
    color: #999999;
}

/* Margin and padding settings */
.noPaddingLeft{
    padding-left: 0 !important;
}
.noPaddingRight{
    padding-right: 0 !important;
}
.noPadding{
    padding: 0 !important;
}
input {
    border-color: #e1e1e1;
    border-style: solid;
    border-width: 0 0 1px;
    color: #c7c7c7;
    font-size: 13px;
    opacity: 1;
    padding-bottom: 17px;
    padding-left: 5px;
    background: transparent;
    letter-spacing: .26px;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
}
::-moz-placeholder {
    opacity: 1;
}
:-moz-placeholder {
    opacity: 1;
}
input:focus{
    border-color: #000;
}
.white{
    color: #fff !important;
}


.inBox{
    margin: 0 60px;
    position: relative;
}
.comonSection{
    position: relative;
    width: 100%;
    padding: 90px 60px;
}
.comonSection2{
    width: 100%;
    position: relative;
}
