/*-----------------------------------------------------------------------------------

CSS INDEX
===================
1. Google font
2. Theme Default CSS
3. Helper-class
4. Button-style
5. Mainmenu-area
6. Section-Background
7. Header-style
8. Headline-style
9. Skills-area
10. Service-area
11. Work-area
12. Team-area
13. Bar-effect-css
14. Masp style
15. Form-style
16. Scroll-To-Top-Button
17. Preloader-css
-----------------------------------------------------------------------------------*/

/*-----------------
1. Google font
------------------*/

@charset "UTF-8";
@import url(font-awesome.min.css);
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/*-------------------
2. Theme Default CSS
--------------------*/

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #000000;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #000000;
}

img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1680px) {

		img {
			max-width: 80%;
		}
}

@media screen and (max-width: 1280px) {

		img {
			max-width: 80%;
		}
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1px;
    font-weight: 400;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

iframe {
  width: 100%;
  margin: 0 50 0 50;
}

html,
body {
    height: 100%
}

body {
    			background-color: #ffffff;
			color: #000000;
			background-image: none;
			background-size: cover;
			background-attachment: fixed;
			background-position: center;
			position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
}

p {
    color: #000000;
}

.center {
	text-align: center;
	}

.left {
	margin-left: 50px;
	}

/**
*Default Button
**/

.button {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #2f60c3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none;
    -webkit-box-shadow: 2px 5px 2px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 5px 2px -5px rgba(0, 0, 0, 0.1);
    font-size: 28px;
}

.button.white,
.button:hover {
    background-color: #ffffff;
    color: #138fc2;
}

.button.white:hover {
    background-color: #2f60c3;
    color: #ffffff;
}

.button.blue,
.button:hover {
    background-color: #138fc2;
    color: #ffffff;
}

.button.blue:hover {
    background-color: #32b3e6;
    color: #000000;
}

.button i {
    margin-left: 5px;
}

input[type="submit"].icon,
		input[type="reset"].icon,
		input[type="button"].icon,
		button.icon,
		.button.icon {
			padding-left: 1.35rem;
		}

			input[type="submit"].icon:before,
			input[type="reset"].icon:before,
			input[type="button"].icon:before,
			button.icon:before,
			.button.icon:before {
				margin-right: 0.5rem;
			}

.icon {
  display: inline-block;
  width: 4em;
  height: 4em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon icon-undo2 {
  font-size: 32px;
  color: #f3tfgf;
}
========================================== */

/**
*Page title
**/

.page-title {
    margin-bottom: 10px;
}

.page-title h2 {
    text-transform: uppercase;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.page-title h2:after {
    content: "\e675";
    font-family: 'themify';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -10px;
    width: 15px;
    height: 15px;
    font-size: 14px;
}

.price-table h3 {
    margin-bottom: 10px;
}

.price-table {
    padding: 50px 40px;
    border-radius: 2px;
    text-align: center;
    background-color: #ffffff;
    color: #515656;
    position: relative;
    margin-top: 20px
}

.price-table.active {
    padding: 70px 40px;
    margin-top: 0
}

.price-table ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.price-table ul li {
    padding: 5px 0;
}

.price-table .price-info {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #55A2BE;
    color: #ffffff;
    border-radius: 0 0 50% 50%;
    padding-bottom: 5px;
}