@import url('https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900|Playfair+Display:400,400i,700,700i,900,900i');

body {
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    overflow-x: hidden
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 0 solid;
}

a:link a:active,
a:visited {
    text-decoration: none !important;
}

a,
a:hover {
    text-decoration: none;
    color: blue;
}

a:hover {
    font-weight: bolder;
}

.submit-btn,
a.btn {
    display: inline-block;
    padding: 5px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    /* Rounded corners */
    border: 5px solid #fff;
    /* same colour as button so that border is only seen on hover */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 1s;
    font-size: 24px;
    color: #000;
    font-weight: bolder;
}

.submit-btn:hover,
a.btn:hover {
    background: #fff;
    color: #0077c7;
    border: 5px solid #0077c7;
}

.submit-btn-primary,
a.btn-primary {
    color: #000;
}

.submit-btn-light,
a.btn-light {
    width: 190px;
    color: #fff;
}

a.btn-light:hover {
    background: #fff;
    color: #c2c9db;
}

a.btn-dark-over {
    background: #fff;
    border: 5px solid #fff;
    position: relative;
    left: 15px;
    top: 15px;
}


.navigation {
    position: fixed;
    top: 0px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 999;
    /* above all other items */
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.menu li {
    margin: 0 10px;
}

.menu li a {
    text-decoration: none;
    color: #000;
}

.dropdown-toggle::after {
    /* the dropdown downward triangle */
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 10px solid #0077c7;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
    /* Rotate the caret on open state */
}

.menu>li>a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
}

.menu ul {
    height: 0;
    left: 0;
    opacity: 0;
    list-style: none;
    /* Remove bullet points */
    position: relative;
    transition: all .5s ease;
    top: 5px;
}

.menu li:hover ul {
    height: 110px;
    opacity: 1;
    transform: translateY(0);
}

.menu ul a {
    color: #000;
    display: block;
    padding: 5px 5px;
}

.dropdown-menu {
    font-size: medium;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    /* Black hamburger lines */
    margin-bottom: 4px;
}

.light-section {
    background-color: #f2f8fa;
    color: #000;
    padding: 50px;
}

.dark-section {
    background-color: #c6f1fe;
    color: #040209;
    padding: 50px;
}

.about-section {
    padding-top: 150px;
}

.container {
    overflow: hidden;
    /* Clear the float */
}

.left {
    float: left;
    width: 40%;
    margin-bottom: 50px;
}

.right {
    float: right;
    width: 55%;
    margin-bottom: 50px;
}

.left-big {
    display: block;
    float: left;
    width: 60%;
    margin-bottom: 1em;
    margin-right: 1em;
}

.right-small {
    float: right;
    width: 35%;
    margin-bottom: 1em;
    margin-left: 1em;
}

.left-small {
    float: left;
    width: 35%;
    margin-bottom: 1em;
    margin-right: 1em;
}

.right-big {
    float: right;
    width: 60%;
    margin-bottom: 1em;
    margin-left: 1em;
}

.services-img {
    margin-top: 20px;
}

.fixedsize-img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.caption {
    font-style: italic;
    font-size: smaller;
}

.fullwidth {
    max-width: 92vw;
    /* not quite full width, 92% of the viewport */
    width: 92vw;
    height: auto;
}


/* Media Query for Responsive Navigation */
@media (max-width: 600px) {
    .navigation ul {
        display: none;
        /* Hide the menu on smaller screens */
    }

    .hamburger {
        display: block;
        /* Show the hamburger menu on smaller screens */
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
}

.contact-section {
    height: 600px;
    color: #fff;
}

.centered-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form {
    max-width: 666px;
    width: 100%;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link {
    flex: 1 0 100%;
    text-align: center;
    margin: 10px;
}

.contact-img img {
    width: 256px;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.logo-footer {
    display: block;
    text-align: center;
}

.footer-text {
    display: block;
    font-style: italic;
    text-align: center;
}

#prices {
    width: 100%;
    border-collapse: collapse;
}

#prices td,
#prices th {
    border: 2px solid #98abce;
    border-radius: 16px;
    padding: 8px;
}

#prices tr:nth-child(even) {
    background-color: #54647f;
}

#prices tr:nth-child(odd) {
    background-color: #4a5d7b;
}

#prices tr:hover {
    background-color: #444444;
}

#prices th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #585858;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
}

h6 {
    padding-left: 1em;
    font-size: 18px !important;
    font-weight: 600;
    color: #546bdf;
    position: relative;
    z-index: 3;
    letter-spacing: 3px;
}

h1 {
    font-weight: 500;
    width: 100%;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 25px;
    color: hsla(207, 73%, 39%, 0.9);
    letter-spacing: .2em;
    font-size: 3vw;
    font-weight: normal;
    text-shadow: hsla(268, 11%, 72%, 0.3) 0 0 1px, hsla(243, 11%, 39%, 0.3) 0 -1px 2px, hsla(0, 45%, 5%, .3) 0 -1px 2px, hsla(360, 55%, 95%, .3) 0 20px 15px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 4px solid #ccc;
    border-radius: 8px;
    /* Rounded borders */
    box-sizing: border-box;
    /* Make sure that padding and width stays in place */
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical
        /* Allow the user to vertically resize the textarea (not horizontally) */
}

#message {
    height: 300px;
}

@media screen and (max-width: 800px) {
    .multi-col {
        columns: 1;
    }
}

@media screen and (min-width: 800px) {
    .multi-col {
        columns: 2;
    }
}

@media screen and (min-width: 1200px) {
    .multi-col {
        columns: 3;
    }
}

@media screen and (min-width: 1600px) {
    .multi-col {
        columns: 4;
    }
}

#website {
    display: none;
}

.outerdiv {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerdiv {
    display: flex;
    width: 80%;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
}

.eachdiv {
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}

.div1 {
    background: rgb(249, 235, 235);
    color: black;
    background-image: url("assets/img/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position-x: 25rem;
}

.div2 {
    background: #49556B;
}

.div3 {
    background: white;
    color: black;
}

.div4 {
    background: #18202D;
}

.div5 {
    background: rgb(249, 235, 235);
    color: black;
}

.userdetails {
    display: flex;
}

.imgbox {
    margin-right: 1rem;
}

.imgbox img {
    border-radius: 50%;
    width: 3rem;
    border: 2px solid #cec5c5;
}

.detbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detbox p {
    margin: 0;
}

.detbox .name {
    color: hsl(0, 0%, 81%);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.detbox .name.dark {
    color: #49505A;
}

.detbox .location {
    color: hsl(0, 0%, 81%);
    opacity: 50%;
    font-size: 0.8rem;
}

.detbox .location.dark {
    color: #49505A;
}

.review h4 {
    font-size: 1.4rem;
    color: #F3DEFF;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.review.dark h4 {
    color: #4B5258;
}

.review p {
    font-size: 0.95rem;
    color: #F3DEFF;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}

.review.dark p {
    color: #0e0e0e;
}

.centered {
    text-align: center;
}

.price {
    font-size: 130%;
}

.time {
    font-size: 115%;
}