.service {
    padding-top: 80px;
    padding-bottom: 80px;    
}

.certificates {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 150px;
    background-size: auto 120%;
    background-position: right;
    background-repeat: no-repeat;
    background-color: #f6f6f6;
}

.service .title {
    display: block;
    font-size: 70px;
    font-family: "Playfair Display", serif;
    margin-bottom: 60px;
    color: #bea68f;
    transition: 0.25s ease-in-out;
}


.service .box{
 	border: 1px solid #efefef;
}

.service .box{
    /*box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);*/
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.service .box:hover {
    text-decoration: none;
    color: #000;
  	 border: 1px solid #bea68f	;
	transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;  	 
}

.service .box:hover > .title {
    color: #bea68f;
}

.service .box:hover > .link {
    color: #bea68f;
}

.service .box:hover > img {
  opacity: 1;
}

.service .box .title {
    display: block;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 600;
    min-height: 60px;
    margin: 20px 0 10px;
    color: #000;
}

.service .box .link {
    font-weight: 700;
    color: #000;
    display: block;
}

.service .box img {
	width: 70px;
}

.get-consultation .text {
    padding: 40px;
}

.get-consultation .text p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    color: black;
    padding-right: 0;
}

.get-consultation .content-wrapper {
    background-color: #fff;
    margin-bottom: -100px;
}

.get-consultation .content-box {
    margin-bottom: 0;
}

.fixed-menu {
    background-color: #183457;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
}

.fixed-menu .logo {
    height: 40px;
}

.fixed-menu .nav-item {
    display: inline-block;
    list-style: none;
    margin-right: 25px;
}

.fixed-menu .nav-item:last-child {
    margin-right: 0;
}

.fixed-menu .link {
    font-weight: 700;
    color: #fff;
    line-height: 40px;
}

.fixed-menu .button {
    height: 40px;
    line-height: 40px;
    float: left;
    color: #183457;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    background: #fff;
    padding: 0 15px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.fixed-menu .button:hover {
    background-color: #ebcfa7;
    text-decoration: none;
    color: #1260A1;
}

.recent-posts .button {
    height: 60px;
    line-height: 60px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    background: #bea68f;
    padding: 0 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.recent-posts .button:hover{
    color: #fff;
    background-color: #1260A1;
    text-decoration: none;
}

.footer-bar .inner h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ebcfa7;
}

@media (min-width: 1200px) {
    .fixed-menu {   
        display: block;
    }
}


 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */

.mt-85 {
    margin-top: 85px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-30 {
    margin-bottom: 30px;
}
 
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 247px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bea68f;
  color: #26282b;
}

/* Style the back side */
.flip-card-back {
  background-color: #bea68f;
  color: #26282b;
  transform: rotateY(180deg);
} 
.flip-card-back h4{
    color: #26282b;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.flip-card-back span{
    color: #26282b;
    font-size: 14px;
    font-weight: 600;
}

.flip-card-back h4 a:hover{
    color: #26282b;
}
.flip-card-back .social{
    margin-top: 10px;
}

.flip-card-back a {
    color: #26282b;
}
.flip-card-back a:hover {
    color: #fff;
    text-decoration: none;
}