@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Regular.eot');
    src: url('../fonts/subset-Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Regular.woff') format('woff'),
        url('../fonts/subset-Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/subset-Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Medium.eot');
    src: url('../fonts/subset-Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Medium.woff') format('woff'),
        url('../fonts/subset-Montserrat-Medium.ttf') format('truetype'),
        url('../fonts/subset-Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-SemiBold.eot');
    src: url('../fonts/subset-Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/subset-Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/subset-Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Bold.eot');
    src: url('../fonts/subset-Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/subset-Montserrat-Bold.woff') format('woff'),
        url('../fonts/subset-Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/subset-Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

html {
    -webkit-text-size-adjust: none;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-size: 16px;
	text-align: center;
	color: #000000;
	line-height: 1.2;
	background: #fff;
}

/* Section */

.section {
	position: relative;
	max-width: 1264px;
	margin: 0 auto;
}


.socials {
	display: flex;
	margin: 0 0 0 auto;
	padding: 0;
	flex-wrap: wrap;
}

.socials li {
	margin: 0 12px 0 0;
	padding: 0;
	list-style: none;
}

.socials li:last-child {
	margin-right: 0;
}

.socials li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100%;
}

.socials li a img {
	display: block;
	height: 18px;
	filter: brightness(0) saturate(100%) invert(24%) sepia(48%) saturate(34%) hue-rotate(326deg) brightness(98%) contrast(106%);
}

.socials li a:hover img {
	transform: scale(1.1);
}


/* About */

#aboutUs {
	display: flex;
	margin-bottom: 50px;
}

#aboutUs .image {
	width: 544px;
}

#aboutUs .image img {
	display: block;
	width: 100%;
	border-radius: 70px;
}

#aboutUs .text {
	width: 670px;
	margin-left: auto;
	padding-top: 20px;
}

#aboutUs .text .title {
	font-size: 25px;
	font-weight: 600;
	color: #ef2525;
	margin: 0 0 18px;
}

/* Services */

#services {
	margin-bottom: 40px;
}

#services .heading {
	text-align: center;
	margin-bottom: 35px;
}

#services .listing {
	--gap: 17px;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#services .listing li {
	display: flex;
	margin: 0 0 26px;
	padding: 0 var(--gap);
	list-style: none;
	width: 25%;
}

#services .listing li .inner {
	border: 1px solid #cacaca;
	background: #f9f8f8;
	padding: 30px 15px;
	border-radius: 35px;
	width: 100%;
    text-align: center;
}

#services .listing li img {
	display: block;
	margin: 0 auto 16px;
	height: 86px;
}

#services .listing li .title {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 5px;
}


/* Animations */

@-webkit-keyframes lightingAnimation {
	to {
        -webkit-transform: scale(1.01) translateX(-10px) translateY(-5px);
                transform: scale(1.01) translateX(-10px) translateY(-5px);
		opacity: 1;
	}
}

@keyframes lightingAnimation {
	to {
        -webkit-transform: scale(1.01) translateX(-10px) translateY(-5px);
                transform: scale(1.01) translateX(-10px) translateY(-5px);
		opacity: 1;
	}
}


@-webkit-keyframes rotateAnim {
	to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg) scale(1.05);
	}
}

@keyframes rotateAnim {
	to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg) scale(1.05);
	}
}

@-webkit-keyframes rotationAnimation {
	to {
        -webkit-transform: scale(1.02) rotate(-2deg);
                transform: scale(1.02) rotate(-2deg);
	}
}

@keyframes rotationAnimation {
	to {
        -webkit-transform: scale(1.02) rotate(-2deg);
                transform: scale(1.02) rotate(-2deg);
	}
}

@-webkit-keyframes upDown {
	to {
        -webkit-transform: translateY(-8px) rotate(0.5deg);
                transform: translateY(-8px) rotate(0.5deg);
	}
}

@keyframes upDown {
	to {
        -webkit-transform: translateY(-8px) rotate(0.5deg);
                transform: translateY(-8px) rotate(0.5deg);
	}
}

@-webkit-keyframes downUp {
	to {
        -webkit-transform: translateY(8px) rotate(0.5deg);
                transform: translateY(8px) rotate(0.5deg);
	}
}

@keyframes downUp {
	to {
        -webkit-transform: translateY(8px) rotate(0.5deg);
                transform: translateY(8px) rotate(0.5deg);
	}
}

@-webkit-keyframes zoomAnimation {
	to {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
	}
}

@keyframes zoomAnimation {
	to {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
	}
}

/* Underlined */

.underlined {
	display: inline-block;
	position: relative;
}

.underlined svg {
	position: absolute;
	left: 0;
	bottom: -33px;
	pointer-events: none;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; 
}

.underlined path {
	-webkit-transition: stroke-dasharray 1.5s, stroke-dashoffset 1.5s, opacity 1.5s;
	-o-transition: stroke-dasharray 1.5s, stroke-dashoffset 1.5s, opacity 1.5s;
	transition: stroke-dasharray 1.5s, stroke-dashoffset 1.5s, opacity 1.5s; 
}
  
.underlined path:last-child {
	opacity: 0.2; 
}

.underlined.start> svg {
	opacity: 1; 
}

.underlined.start> svg path {
	stroke-dashoffset: 0; 
}


/* Miscelleneous */

p {
	margin: 0 0 18px;
}

ul,ol {
	margin-bottom: 18px;
	padding: 0 0 0 20px;
}


h1,h2,h3,h4,h5,h6,.heading {
	margin: 0 0 25px;
	font-weight: bold;
	padding: 0;
	line-height: 1.2;
}

.heading {
	font-size: 41px;
	margin: 0 0 10px;
}

a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
	color: #5fa6db;
}

.linkBtn {
	position: relative;
	display: table;
	text-align: center;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	background: #ef2525;
	color: #fff;
	margin: 18px 0;
	border: none;
	min-width: 7.045454545454545em;
	padding: 0.5454545454545455em 0.6818181818181818em;
	text-align: center;
	border-radius: 0;
	line-height: 1.2;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.linkBtn:hover {
	color: #fff;
	background-color: #fd3830;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

img {
	border: 0;
	max-width: 100%;
	height: auto;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

::-webkit-input-placeholder {
	opacity: 1;
	color: inherit;
}

:-moz-placeholder {
	opacity: 1;
	color: inherit;
}

::-moz-placeholder {
	opacity: 1;
	color: inherit;
}

:-ms-input-placeholder {  
	opacity: 1;
	color: inherit;
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;	
}

form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

