@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500&family=Playfair+Display:wght@400;500&display=swap');
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
:active,:hover,:focus {
    outline: 0 !important;
    outline-offset: 0;
}
a,a:hover {
    text-decoration: none;
}
a,button,.btn,img {
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}
:root {
    --prime-color: #052943;
    --second-color: #034d82;
    --text-color: #212121;
    --light-color: #3ea6ad;
    --white-color: #ffffff;
    --header-font: 'Playfair Display', serif;
    --text-font: 'Barlow', sans-serif;
}
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--text-font);
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--header-font);
    color: var(--second-color);
    margin-bottom: 1.875rem;
}
h1 {
    font-size: 3.125rem;
}
h2 {
    font-size: 2.25rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
p {
    font-family: var(--text-font);
    font-size: 1rem;
    line-height: 1.875rem;
    color: var(--text-color);
}
p:last-child {
    margin-bottom: 0;
}
.top-space {
    margin-top: 6.25rem;
}

/* Header */
header {
    background: var(--prime-color);
    z-index: 1020;
}
.logo {
    background: var(--white-color);
    padding: 1.25rem 1.875rem;
}
.logo img {
    height: 62px;
}

/* Banner */
.banner {
    margin-top: 102px;
}

/* services */
.serv-box {
    position: relative;
    border-bottom: 2px solid var(--prime-color);
}
.serv-title {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.serv-title h1, .serv-title h5 {
    margin-bottom: 0;
}
.serv-box img {
    opacity: .1;
}
.serv-box:hover img  {
    opacity: 1;
}
.serv-box:hover .serv-title {
    left: 30px;
}

/* Projects */
.home-prjt-box {
    background: var(--second-color);
}
.home-prjt-title {
    padding: 20px;
}
.home-prjt-title h5, .home-prjt-title p {
    color: var(--white-color);
}
.home-prjt-title h5 {
    margin-bottom: .25rem;
    font-family: var(--text-font);
    font-weight: normal;
}
.more-project-area {
    border: 2px solid var(--prime-color);
}
.more-project-area {
    padding: 30px;
}
.view-projects a {
    font-family: var(--text-font);
    font-size: 18px;
    padding: .75rem 1.5rem;
    border: 2px solid var(--prime-color);
    color: var(--text-color);
}
.view-projects a:hover {
    background: var(--prime-color);
    color: var(--white-color);
}

/* Footer */
footer {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
    background: var(--prime-color);
}
.footer-menu ul li {
    display: block;
    margin-bottom: 10px;
}
.footer-menu ul li a {
    color: var(--white-color);
}
.footer-menu ul li a:hover {
    color: var(--light-color);
}
.footer-address p {
    color: var(--white-color);
}
.footer-address p span {
    font-weight: 500;
}
.footer-address a {
    color: var(--white-color);
}
.footer-address a:hover {
    color: var(--light-color);
}
.footer-social p {
    color: var(--white-color);
}
.footer-social p i {
    margin-right: 10px;
}
.footer-social a {
    color: var(--white-color);
}
.footer-social a:hover {
    color: var(--light-color);
}
.copyright p {
    color: var(--light-color);
}
.copyright a {
    color: var(--light-color);
}
.copyright a:hover {
    color: var(--white-color);
}

/* Inner Styles */
.inner-title-wrap {
    margin-top: 102px;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}
.inner-title-wrap h1 {
    margin-bottom: 0;
    position: relative;
}
.inner-title-wrap h1::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 3px;
    top: 50%;
    margin-left: 20px;
    background: var(--second-color);
}

.gallery img {
    width: 100%;
}

.inner-serv h1 {
    margin-bottom: 0;
}
.inner-serv > ul {
    padding-left: 1.1rem;
    list-style: circle;
}
.inner-serv ul li {
    line-height: 2rem;
}

.about h5 {
    margin-bottom: .5rem;
}
.about ul {
    padding-left: 2rem;
    list-style: circle;
}
.about ul li {
    line-height: 2rem;
}
.about img {
    border-top-left-radius: 6.25rem;
    border-bottom-right-radius: 6.25rem;
    border-top-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

/* Contact */
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--second-color);
    border-radius: 50%;
    padding: 15px;
}
.contact-icon i {
    color: var(--white-color);
    font-size: 22px;
}
.form-group {
    margin-bottom: 1.5rem;
}
label {
    font-family: var(--primary-font);
    font-size: 14px !important;
}
textarea {
    resize: none;
}
.form-control::-webkit-input-placeholder {
    color: #ccc;
}
.form-control {
    font-family: var(--text-font);
    border: 1px solid var(--second-color) !important;
    border-radius: 0;
    outline:none !important;
    box-shadow: none !important;
    padding: .875rem;
    font-size: 14px;
}
.help-block li {
    color: red;
    font-size: 14px;
}
.btn-send {
    border-radius: 0px;
    padding: 10px 15px 12px 15px;
    background: transparent;
    border: 1px solid var(--second-color) !important;
    color: var(--text-color);
    font-size: 14px;
}
.btn-send:hover {
    background: transparent;
    color: var(--text-color);
}

.address-area h5 {
    margin-bottom: .75rem;
}
.address-area p {
    font-size: 18px;
}
.address-area a {
    color: inherit;
}
.address-area a:hover {
    color: var(--light-color);
}