/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret One:wght@400;500;700&display=swap');

/* VARIABLES */
:root {
    --c-dark: #214916;
    --c-brand: #4e8b1d;
    --c-brand-light: #698c5d;
    --c-brand-rgb: 114, 114, 114;
    --c-body: #2c2c2c;
	--font-main: "Roboto", sans-serif;
    --font-heading: "Poiret One", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

/* RESET & HELPERS */
body {
	font-family: var(--font-main);
	line-height: 1.8;
   color: var(--c-body);
	position:relative;
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-heading);
	font-weight: 900;
	color: var(--c-body);
}

h3.small {
	font-size: 18px;
}

h4 {
    padding-bottom: 20px;
}

h4.larger {
	padding-bottom: 10px;
	font-size:20px;
}

h5.info {
    text-align: left; 
}

p.center, h5.center {
	text-align:center;
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
	max-width: 100%;
   height: auto;
	border-radius: 5%;
	box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
}

img.noshadow {
	box-shadow: none;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

.service .service-img {
    position: relative;
}

.service .service-img .icon  {
    width: 90px;
    height: 90px;
    background: linear-gradient(to bottom right, #000, #eee);
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.service .service-img .icon i {
    font-size: 36px;
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: var(--c-dark);
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}

/* BTN */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 10px 24px;
}

.btn-brand {
    background-color: #d6ab37;
    border-color: #d6ab37;
    color: var(--c-dark);
}

.btn-brand:hover {
    background-color:#ead59a;
    border-color:#ead59a;
    color: var(--c-dark);
}


/* HERO */
#hero {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.685), rgba(var(--c-brand-rgb), 0.585)), url(../images/cover_05.png);
    background-position: center;
    background-size: cover;
}

/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color:#ead59a;
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ICONBOX */
.iconbox {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:transparent;
    border-radius: 10px;
    color: var(--c-dark);
    font-size: 34px;
    flex: none;
}

/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background:transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
    height: 100%;
    background:#ead59a;
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: black;
}

.service:hover .iconbox {
    background-color:transparent;
    color: black;
}

/* PORTFOLIO */
.portfolio-item .iconbox {
    background-color: #ead59a 0.789;
    color: black;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}

/* REVIEW */

.review small {
    font-weight: 600;
    text-transform: uppercase;
    color:#000;
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
}

/* TEAM */

.people  {
    box-shadow: 0 12px 12px rgba(0,0,0,0.1);
}

.people .person {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding-bottom: 18px;
}

.people .person img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

.people .heart {
    color: #a9196d;
}


/* FOOTER */
footer {
    padding-top: 40px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255,255,255,0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color:#ead59a;
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.social-icons a:hover {
text-decoration:none;
color: white;
}
.social-icons .twitter:hover 
{color: #1da1f2;}

.social-icons .facebook:hover 
{color: #1da1f2;}

.social-icons .youtube:hover
{color: #dd2c28;}

.social-icons .linkedin:hover
{color: #0b66c3;}

.social-icons .telegram:hover
{color: #31b0e8;}

.social-icons .instagram:hover
{color: #dd2c28;}

