@charset "UTF-8";
/*!*/
:root {
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;

    --ams-text-white: #f6f6f6;
    --ams-text-black: #1e2024;
    --ams-sidemenu: #1e2024;
    --ams-bg-white: #f6f6f6;
    --ams-bg-body: #ececec;
    --ams-bg-dark: #1e2024;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    text-align: var(--bs-body-text-align);
    background-color: var(--ams-bg-body);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.text-right {
    text-align: right !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.float-right {
    float: right !important;
}

.text-start {
    text-align: left !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/***
----- Header
 ***/
#header {
    width: 100%;
    height: 100vh;
    background: url("../img/bg_header.jpg") center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0;
}

#header:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#header .container {
    z-index: 2;
}

#header h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#header h1 span {
    border-bottom: 4px solid #3498db;
}

#header h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 24px;
}

#header .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: #3498db;
    text-transform: uppercase;
}

#header .btn-get-started:hover {
    background: #4ea5e0;
}

#header .caption {
    position: absolute;
    top: 3%;
    left: 0;
    right: 0;
    color: #fff;
}

#header .caption img {
    margin-bottom: 8em;
}

#header .caption h1 {
    color: #fff;
    font-family: Aller Bold Italic;
    font-size: 50px;
    font-weight: 500;
    margin-top: 10%;
    margin-right: 20%;
}

#header .caption h2 {
    color: #fff;
    font-family: Aller Bold Italic;
    font-size: 50px;
    font-weight: 500;
    margin-top: 2%;
    margin-left: 20%;
}

@media (max-width: 600px) {
    #header .caption h1 {
        font-size: 30px;
        line-height: 36px;
    }

    #header .caption h2 {
        font-size: 30px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    #header {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    #header h1 {
        font-size: 30px;
        line-height: 36px;
    }

    #header h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/***
----- Menu
 ***/
.site-navbar {
    margin-bottom: 0px;
    z-index: 1999;
    position: absolute;
    top: 0;
    width: 100%;
    font-family: "Raleway", sans-serif;
    color: var(--ams-text-black);
}
.site-navbar .site-logo {
    position: relative;
    left: 0;
    font-size: 24px;
}
.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu .active {
    color: #007bff;
    display: inline-block;
    padding: 20px 20px;
}
.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
}
.site-navbar .site-navigation .site-menu > li {
    display: inline-block;
}
.site-navbar .site-navigation .site-menu > li > a {
    padding: 20px 20px;
    font-size: 13px;
    display: inline-block;
    text-decoration: none !important;
}
.site-navbar .site-navigation .site-menu > li > a:hover {
    color: #aba798;
}
.site-navbar .site-navigation .site-menu > li.social > a {
    padding-left: 5px;
    padding-right: 5px;
}
.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
    position: relative;
    padding-right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children > a:before {
    position: absolute;
    content: "\e313";
    font-size: 16px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "icomoon";
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    border-top: 2px solid #007bff;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
}
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #000;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
    color: #007bff !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 210px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
    padding: 9px 20px;
    display: block;
}
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li
    > a:hover {
    background: #eff1f3;
    color: #000;
}
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > a:before {
    content: "\e315";
    right: 20px;
}
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > .dropdown,
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > ul {
    left: 100%;
    top: 0;
}
.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
    color: #007bff;
}
.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    top: 0px;
    z-index: 2000;
    padding-top: 20px;
    background: var(--ams-bg-dark);
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}
.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    color: var(--ams-text-white);
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: var(--ams-text-white);
}
.site-mobile-menu .site-nav-wrap a:hover {
    color: #aba798 !important;
}
.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}
.site-mobile-menu .site-nav-wrap li .active {
    color: #007bff;
}
.site-mobile-menu .site-nav-wrap .social {
    display: inline-block;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    font-family: "icomoon";
    content: "\f078";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}
.site-mobile-menu .site-nav-wrap > li.social {
    float: none !important;
    width: auto !important;
}
.site-mobile-menu .site-nav-wrap > li > a {
    padding-left: 20px;
    font-size: 20px;
}
.site-mobile-menu .site-nav-wrap > li > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
    padding-left: 40px;
    font-size: 16px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
    padding: 0;
    margin: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
    font-size: 16px;
    padding-left: 60px;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 5em;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
    width: auto;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
    padding-left: 15px !important;
}

.sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
}
.sticky-wrapper .site-navbar {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.sticky-wrapper .site-navbar {
    background-color: var(--ams-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sticky-wrapper .site-navbar .site-menu-toggle {
    color: var(--ams-text-white);
    text-decoration: none;
}
.sticky-wrapper .site-navbar .site-logo a {
    color: #fff;
}
.sticky-wrapper .site-navbar .site-menu > li > a {
    color: var(--ams-text-white) !important;
}
.sticky-wrapper .site-navbar .site-menu > li > a:hover,
.sticky-wrapper .site-navbar .site-menu > li > a.active {
    color: #aba798 !important;
}
.sticky-wrapper.is-sticky .site-navbar {
    background: var(--ams-bg-dark) !important;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}
.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
    color: var(--ams-text-white) !important;
    text-decoration: none;
}
.sticky-wrapper.is-sticky .site-navbar .site-logo a {
    color: #007bff;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
    color: var(--ams-text-white) !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
    color: #aba798 !important;
}

/***
----- About
 ***/
#about {
    background-color: var(--ams-bg-white);
}

.about-title h1 {
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
}

.big-paragraph {
    padding-top: 50px;
    font-family: "Aller Light";
    font-size: 15pt;
    font-weight: 300px;
}

/***
----- Util Row
 ***/
#util-row {
    width: 100%;
    height: 50vh;
    background: url("../img/bg_header2.jpg") center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
}

#util-row:after {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 600px) {
    #util-row {
        width: 100%;
        height: 50vh;
        background: url("../img/bg_header2.jpg") center center;
        background-repeat: no-repeat;
        background-size: 200%;
        padding: 0;
    }
}

/***
----- Services
 ***/
#services {
    background-color: var(--ams-bg-white);
}

.services-title h1 {
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
}

.box {
    position: relative;
    width: 100%;
    height: 300px;
    border: 5px solid #304269;
}

.box h1 {
    position: absolute;
    font-family: "Aller";
    color: var(--ams-text-black);
    font-weight: 600;
    width: 100%;
}

.details {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 100%;
    height: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}

.details p {
    font-family: "Aller Light";
    line-height: 30px;
    font-weight: 300;
    margin: 14%;
}

.details h2 {
    font-family: "Aller";
    margin: 0px;
    color: #fff;
    font-weight: 700;
}

.box:hover .details {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.9;
}

.purple {
    background: #00738d;
}

.purple p {
    color: #ffffff;
}

/***
----- Works
 ***/
#works {
    background: #00738d;
}

.works-title h1 {
    color: var(--ams-text-white);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
}

.work-box {
    width: 100%;
}

.work-box .info {
    position: relative;
    width: 100%;
}

.work-box .brand-img {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: 50px;
}

.work-box .info h3 {
    position: relative;
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-size: 20pt;
}

.work-box .info p {
    color: var(--ams-text-white);
    font-family: "Aller Light";
    width: 100%;
}

.work-box .item {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

/***
----- Teams
 ***/
#teams {
    background: var(--ams-bg-white);
}

.our-title h1 {
    position: relative;
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
    letter-spacing: 15rem;
    padding-left: 15%;
}

.teams-title h1 {
    position: relative;
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
    letter-spacing: 15rem;
    padding-left: 10%;
}

.photos {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
}

.photos img {
    width: 250px;
    height: 350px;
    background-position: center;
    background-size: cover;
}

@media (min-width: 280px) and (max-width: 599px) {
    .our-title h1 {
        position: relative;
        letter-spacing: 3rem;
        padding-left: 17%;
    }

    .teams-title h1 {
        position: relative;
        letter-spacing: 2rem;
        padding-left: 10%;
    }

    .photos img {
        position: relative;
        padding-bottom: 10px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .our-title h1 {
        position: relative;
        letter-spacing: 5rem;
        padding-left: 15%;
    }

    .teams-title h1 {
        position: relative;
        letter-spacing: 5rem;
        padding-left: 10%;
    }

    .photos img {
        position: relative;
        padding-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .our-title h1 {
        position: relative;
        letter-spacing: 5rem;
        padding-left: 15%;
    }

    .teams-title h1 {
        position: relative;
        letter-spacing: 5rem;
        padding-left: 10%;
    }

    .photos img {
        position: relative;
        padding-top: 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .our-title h1 {
        position: relative;
        letter-spacing: 10rem;
        padding-left: 15%;
    }

    .teams-title h1 {
        position: relative;
        letter-spacing: 5rem;
        padding-left: 10%;
    }

    .photos img {
        position: relative;
        padding-top: 10px;
    }
}

/***
----- Clients
 ***/
#clients {
    background: #00738d;
}

.clients-title h1 {
    color: var(--ams-text-white);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
}

#clients .big-paragraph {
    color: var(--ams-text-white);
    padding-top: 50px;
    font-family: "Aller Light";
    font-size: 15pt;
    font-weight: 300px;
}

.slide-container {
    margin: 0 30px;
    overflow: hidden;
}
.card {
    background: #fff;
    border-radius: 8px;
}
.card .image-box {
    height: 300px;
}
.card .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}
.card .profile-details {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 15px;
}
.card .profile-details img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.profile-details .name {
    font-size: 15px;
    font-weight: 500;
}
.profile-details .job {
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
}

.swiper-navBtn {
    color: #000;
    height: 50px;
    width: 50px;
    transform: translateY(-40%);
    background: #fff;
    border-radius: 50%;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 24px;
}

.swiper-pagination-bullet {
    background-color: #333;
}

@media screen and (max-width: 768px) {
    .swiper-navBtn {
        display: none;
    }
}

/***
----- Contact
 ***/
#contact {
    background-color: var(--ams-bg-white);
}

.contact-title h1 {
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 800;
}

#contact .info {
    width: 100%;
    padding-bottom: 30px;
}

#contact h2 {
    color: var(--ams-text-black);
    font-family: "Bebas Neue Regular";
    font-weight: 400;
}

#contact .info i {
    color: var(--ams-text-black);
    padding-right: 10px;
}

#contact .info span {
    color: var(--ams-text-black);
    font-family: "Aller Light";
    font-size: 15pt;
    font-weight: 200px;
}

#contact .info a {
    color: var(--ams-text-black);
    text-decoration: none;
}

#contactForm {
    border: none;
}

#contactForm .fullwidth {
    width: 100% !important;
}

#contactForm .input {
    border-bottom: 1px solid #757575;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom: 1px solid #757575;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="phone"],
textarea,
textarea:focus,
select,
select:focus {
    border: none;
    margin: 0 !important;
    padding: 16px;
    font-size: 16px;
    font-family: "Aller Light";
    background: var(--ams-bg-white);
}

textarea,
textarea:focus {
    padding: 16px !important;
    font-size: 16px !important;
}

#contactForm button {
    font-family: "Aller";
    text-transform: none;
    font-weight: 200;
}

.contactbtn {
    border: 5px solid #304269;
    padding: 5px 100px;
    box-shadow: -5px 5px #91bed4;
}

.contactmap {
    border: 5px solid #304269;
    box-shadow: 5px -5px #91bed4;
}

/***
----- Footer
 ***/

#footer {
    padding: 10px 0;
    font-size: 13px;
    background: #0f1113;
    position: relative;
}

#footer .copyright {
    padding-top: 10px;
    color: var(--ams-text-white);
}

#footer .copyright i.fa-heart {
    color: #d05b51;
}

#footer .copyright a {
    color: #777;
}

#footer .copyright a:hover {
    text-decoration: underline;
}

#footer .social i {
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 12pt;
    color: var(--ams-text-white);
}

#footer a.toTop {
    position: absolute;
    left: 50%;
    top: -23px;
    margin-left: -20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 16px;
    bottom: 0;
    font-size: 23px;
    z-index: 100;
    color: #fff;
    text-decoration: none;
    -webkit-border-top-right-radius: 9px;
    -webkit-border-top-left-radius: 9px;
    -moz-border-radius-topright: 9px;
    -moz-border-radius-topleft: 9px;
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
}
