/*
Theme Name: ArdCentrs
Theme URI: http://www.ardcentrs.lv/
Author: Andrejs Fokins
Author URI: http://www.ardcentrs.lv/
Description: ArdCentrs Wordpress theme
Version: 0.0.60
Tags: Ardcentrs
Text Domain: Ardcentrs
*/
/**
 * Reset CSS instead of Normalize inside of Bootstrap
 */

/* Page commons */
html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

* > p:first-child {
    margin-top: 0;
}

* > p:last-child {
    margin-bottom: 0;
}

* a:hover {
    color: #48dbfb;
}

.alignleft {
    float: left;
    margin: 0 20px 10px 0;
}

.alignright {
    float: right;
    margin: 0 0 10px 20px;
}

.aligncenter {
    margin: 0 auto 10px auto;
    display: block;
}

.bg-cover {
    background: center no-repeat;
    background-size: cover;
}

.bg-contain {
    background: center no-repeat;
    background-size: contain;
}

.object-fit-cover {
	object-fit: cover;
}

.object-fit-contain {
	object-fit: contain;
}

/* Fixed aspect ratio images */
.ratio-16x10 {
    --bs-aspect-ratio: calc(10 / 16 * 100%);
}

#go-to-top {
    position: fixed;
    width: 64px;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    max-width: 0;
    transition: opacity .5s, max-width .0s .5s;
    z-index: 3;
}

#go-to-top.visible {
    opacity: 1;
    max-width: 64px;
    transition: opacity .5s, max-width .0s;
}

/* Page stretch to 100% screen height */
main {
    min-height: calc(100vh - 143px - 211px);
}

body.admin-bar main {
    min-height: calc(100vh - 143px - 211px - 32px);
}

/* Footer */

#footer {
    background-color: #353b48;
    color: white;
    padding-top: 50px;
    padding-bottom: 20px;
}

#footer a {
    color: white;
    text-decoration: none;
}


/* Header */
#header {
    background-color: #353b48;
    padding: 20px;
}

.lang-wrapper {
    top: 0;
    right: 20px;
    padding: 10px;
    background-color: white;
}

.lang-wrapper a {
    color: #353b48;
    text-decoration: none;
    text-transform: uppercase;
}

.lang-wrapper ul {
    list-style: none;
}

.lang-wrapper ul li:not(:last-child) a::after {
    content: ' | ';
    color: #353b48;
    padding-right: 5px;
}

.top-menu a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

.top-menu a:not(:last-child) {
    margin-right: 15px;
}

/* Top section */

#top-section .darken {
    background: rgba(0, 0, 0, 0.3);
    padding: 200px 0px;
}

#top-section h1 {
    font-size: 50px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 30px black;
}

#top-section h3 {
    font-size: 30px;
    font-weight: 500;
    color: white;
    text-shadow: 2px 2px 30px black;
}

.button-main {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    border: 1px solid white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    text-shadow: 2px 2px 30px black;
}

.button-main:hover {
    color: white;
    text-decoration: none;

}

/* About section */

#about {
    padding: 100px 0;
}

.about-pic {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin-right: 100px;
}
.section-title {
    font-size: 40px;
    font-weight: 500;
}
.section-title::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #111;
    bottom: 0;
    left: calc(50% - 42.5px);
}

.section-title::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px !important;
    background-color: #48dbfb;
    border: 4px solid #ffffff;
    left: calc(50% - 12px);
    bottom: -7px;
}

/* Services section */

#services {
    background-color: #353b48;
    padding: 100px 0;
    color: white;
}

.service-card .price {
    font-size: 40px;
    font-weight: 600;
    margin: 20px auto;
}

#contacts {
    padding: 100px 0;
}

/* Contact form */

.wpcf7 {
    padding: 50px;
    background-color: #353b48;
    color: white;
    border-radius: 50px;
}

form p span input {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #353b48;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 50px;
    padding-left: 30px;
}

form p span textarea {
    width: 100%;
    border-radius: 20px;
    padding-left: 30px;
}

form p label {
    color: white;
    font-family: 'Overpass', sans-serif;
    font-size: 16px;
    width: 100%;
}

form p span input::placeholder {
    color:#353b48;
    font-family: 'Overpass', sans-serif;
    font-size: 16px;
}

form .wpcf7-list-item-label {
    margin-left: 30px;
}
form .wpcf7-list-item {
    margin: 0;
}

.btn-submit {
    background-color: #48dbfb;
    color: white;
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    text-shadow: 2px 2px 30px black;
    border-radius: 2px;
    outline: none;
    border: none;
}

#contacts a {
    color: #353b48;
    text-decoration: none;

}