/*
Template:  Extract || Construction and Business Template
Author: RoyHridoy
Version: 1.0
Developed by: Hridoy Roy
NOTE: Please do not change anything here! write in a custom.css file if required!

*/
/*================================================
[  Table of contents  ]
==================================================
01. General
    01.1 Google font
    01.2 Default css
02. Basic margin padding
    02.1 Margin top
    02.2 Margin right
    02.3 Margin bottom
    02.4 Margin left
    02.5 Padding top
    02.6 Padding right
    02.7 Padding bottom
    02.8 Padding left
03. Page section margin padding
    03.1 Page section padding
    03.2 Page section margin
04. Back to top

======================================
[ End table content ]
======================================*/

/*************************
01. General
*************************/

/*************************
01.1 Google font
*************************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i');

/*************************
01.2 Default css
*************************/
body {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
}
img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
a {
    font-family: 'Roboto', sans-serif;
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:focus {
    text-decoration: none;
    outline: none;
}
a:focus,
a:hover {
    text-decoration: none;
}
::-webkit-input-placeholder { /* Chrome */
    color: #bababa;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #bababa;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #bababa;
    opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
    color: #bababa;
    opacity: 1;
}
a, button, input {
    outline: medium none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #454545;
    font-family: inherit;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
p {
    margin-bottom: 10px;
}
.fix {
    overflow: hidden;
}
.pos-absolute {
    position: absolute;
}
.pos-relative {
    position: relative;
}
.pos-relative {
    position: static;
}
.display-table {
    display: table;
    height: 100%;
    width: 100%;
}
.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.bg-grey {
    background-color: #f7f7f7;
}
button {
    border: 0px;
}
.button {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 48px;
    padding: 0 25px;
    text-transform: uppercase;
    transition: all 0.3s ease-out 0s;
}
.color-btn,
.dark-btn:hover {
    color: #454545;
}
.dark-btn,
.color-btn:hover {
    background-color: #454545;
    color: #fff;
}
.section-title h2 {
    color: #333;
    text-transform: ;
    line-height: 1.2;
    font-size: 25px;
    
}
.section-title.color-light h2,
.section-title-2.color-light h2,
.section-title-3.color-light h2 {
    color: #fff;
}
.section-title,
.section-title-2,
.section-title-3 {
    margin-bottom: 45px;
}
.section-title-2 h2,
.section-title-3 h2 {
    color: #333;
    display: inline-block;
    letter-spacing: 1px;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}
.section-title-2 h2::before,
.section-title-2 h2::after,
.section-title-3 h2::before,
.section-title-3 h2::after {
    background-color: #777;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    width: 70%;
}
.section-title-2.text-center h2::before,
.section-title-2.text-center h2::after,
.section-title-3.text-center h2::before,
.section-title-3.text-center h2::after {
    margin: auto;
}
.section-title-2 h2::after {
    width: 35%;
}
.section-title-3 h2::before,
.section-title-3 h2::after {
    height: 1px;
}
.section-title-3 h2::before {
    width: 50%;
}
.section-title-3 h2::after {
    bottom: -5px;
    width: 25%;
}
.big-text {
    font-size: 16px;
}
.w-25 {
    width: 25%;
}
.w-33 {
    width: 33.33%;
}
.w-50 {
    width: 50%;
}
.w-100 {
    width: 100%;
}
.overlay {
    position: relative;
    z-index: 1;
}
.overlay:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0,0,0,0.7);
    z-index: -1;
}
blockquote {
    border-radius: 5px;
    background-color: #f5f5f5;
    font-size: 16px;
}

/*************************
02. Basic margin padding
*************************/
.m-auto {
    margin: auto;
}
.m-0 {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}
.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}
/*************************
02.1 Margin top
*************************/
.mt-0 { margin-top: 0 }
.mt-5 { margin-top: 5px }
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-25 { margin-top: 25px }
.mt-30 { margin-top: 30px }
.mt-35 { margin-top: 35px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }
.mt-60 { margin-top: 60px }
.mt-70 { margin-top: 70px }
.mt-80 { margin-top: 80px }
.mt-90 { margin-top: 90px }
.mt-100 { margin-top: 100px }
/*************************
02.2 Margin right
*************************/
.mr-0 { margin-right: 0px }
.mr-5 { margin-right: 5px }
.mr-10 { margin-right: 10px }
.mr-15 { margin-right: 15px }
.mr-20 { margin-right: 20px }
.mr-25 { margin-right: 25px }
.mr-30 { margin-right: 30px }
.mr-35 { margin-right: 35px }
.mr-40 { margin-right: 40px }
.mr-50 { margin-right: 50px }
.mr-60 { margin-right: 60px }
.mr-70 { margin-right: 70px }
.mr-80 { margin-right: 80px }
.mr-90 { margin-right: 90px }
.mr-100 { margin-right: 100px }
/*************************
02.3 Margin bottom
*************************/
.mb-0 { margin-bottom: 0 }
.mb-5 { margin-bottom: 5px }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-25 { margin-bottom: 25px }
.mb-30 { margin-bottom: 30px }
.mb-35 { margin-bottom: 35px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }
.mb-60 { margin-bottom: 60px }
.mb-70 { margin-bottom: 70px }
.mb-80 { margin-bottom: 80px }
.mb-90 { margin-bottom: 90px }
.mb-100 { margin-bottom: 100px }
/*************************
02.4 Margin left
*************************/
.ml-0 { margin-left: 0 }
.ml-5 { margin-left: 5px }
.ml-10 { margin-left: 10px }
.ml-15 { margin-left: 15px }
.ml-20 { margin-left: 20px }
.ml-25 { margin-left: 25px }
.ml-30 { margin-left: 30px }
.ml-35 { margin-left: 35px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
.ml-60 { margin-left: 60px }
.ml-70 { margin-left: 70px }
.ml-80 { margin-left: 80px }
.ml-90 { margin-left: 90px }
.ml-100 { margin-left: 100px }
/*************************
02.5 Padding top
*************************/
.pt-0 { padding-top: 0 }
.pt-10 { padding-top: 10px }
.pt-15 { padding-top: 15px }
.pt-20 { padding-top: 20px }
.pt-25 { padding-top: 25px }
.pt-30 { padding-top: 30px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }
.pt-60 { padding-top: 60px }
.pt-70 { padding-top: 70px }
.pt-80 { padding-top: 80px }
.pt-90 { padding-top: 90px }
.pt-100 { padding-top: 100px }
/*************************
02.6 Padding right
*************************/
.pr-0 { padding-right: 0 }
.pr-10 { padding-right: 10px }
.pr-15 { padding-right: 15px }
.pr-20 { padding-right: 20px }
.pr-25 { padding-right: 25px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }
.pr-60 { padding-right: 60px }
.pr-70 { padding-right: 70px }
.pr-80 { padding-right: 80px }
.pr-90 { padding-right: 90px }
.pr-100 { padding-right: 100px }
/*************************
02.7 Padding bottom
*************************/
.pb-0 { padding-bottom: 0 }
.pb-10 { padding-bottom: 10px }
.pb-15 { padding-bottom: 15px }
.pb-20 { padding-bottom: 20px }
.pb-25 { padding-bottom: 25px }
.pb-30 { padding-bottom: 30px }
.pb-40 { padding-bottom: 40px }
.pb-50 { padding-bottom: 50px }
.pb-60 { padding-bottom: 60px }
.pb-70 { padding-bottom: 70px }
.pb-80 { padding-bottom: 80px }
.pb-90 { padding-bottom: 90px }
.pb-100 { padding-bottom: 100px }
/*************************
02.8 Padding left
*************************/
.pl-0 { padding-left: 0 }
.pl-10 { padding-left: 10px }
.pl-15 { padding-left: 15px }
.pl-20 { padding-left: 20px }
.pl-25 { padding-left: 25px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-60 { padding-left: 60px }
.pl-70 { padding-left: 70px }
.pl-80 { padding-left: 80px }
.pl-90 { padding-left: 90px }
.pl-100 { padding-left: 100px }

/***************************
03. Page section margin padding
****************************/

/***************************
03.1 Page section padding
****************************/

.ptb-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.ptb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.ptb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.ptb-35 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/***************************
03.2 Page section margin
****************************/

.mtb-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.mtb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.mtb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.mtb-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}
.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.mtb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.mtb-70 {
    margin-top: 70px;
    margin-bottom: 70px;
}
.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}
.mtb-90 {
    margin-top: 90px;
    margin-bottom: 90px;
}
.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

/*************************
04. Back to top
*************************/
#scrollUp {
    border-radius: 5px;
    position: fixed;
    bottom: 60px;
    color: #fff;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 40px;
    z-index: 9999 !important;
}
#scrollUp:hover {
    height: 50px;
}
