@charset "utf-8";
/* CSS Document */
:root {
    --color_yellow: #FBBB00;
    --color_white: #ffffff;
}

/*FONTS*/

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo_Light;
    src: url("../fonts/Heebo-Light.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo_bold;
    src: url("../fonts/Heebo-Bold.ttf");
    font-display: swap;
}

/*END FONTS*/

/*HTML*/

* {
    box-sizing: border-box;
}

a:focus, button:focus, .cover_nav_desktop div:focus {
    border: 1px dashed var(--color_white) !important;
    outline-offset: 2px !important;
    outline: 2px solid var(--color_yellow) !important;
    transition: .3s;
}

input[type=text]:focus:invalid,
input[type=email]:focus:invalid,
input[type=tel]:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    border: 1px solid red;
    transition: .3s;
}

input[type=text]:valid,
input[type=email]:valid,
input[type=tel]:valid,
select:valid,
textarea:valid {
    border: 1px solid var(--color_yellow) !important;
    transition: .3s;
}

html {
    height: 100%;
}

body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    font-size: 14px;
    line-height: 18px;
    font-family: Heebo, sans-serif;
    overflow-x: hidden;
}

a, p, button {
    text-decoration: none;
    font-family: Heebo, sans-serif;
    font-size: 1em;
    color: #4C6571;
    text-align: center;
    font-weight: 400;
}

pre {
    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word;
}

.button {
    /*border: none;*/
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    width: 120px;
    height: 40px;
    background-color: #FBBB00;
    margin: 20px auto 60px;
    display: block;
    line-height: normal;
}

main {
    padding-top: 80px;
    flex: 1 1 auto;
    background-color: white;
}

.button:hover {
    background-color: #73a4bc;
    transition: all 0.3s ease;
}

input, textarea, select {
    width: 100%;
    font-family: Heebo, sans-serif;
    border: 1px solid #818a91;
    padding: 8px 16px;
    margin: 0 0 24px 0;
    text-align: right;
    color: inherit;
}

textarea {
    height: 110px;
    width: 100%;
}

a {
    color: #54595F;
}

h1, h3 {
    color: #4C6571;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4em;
    letter-spacing: 6px;
    text-align: center;
    width: 90%;
    margin: auto 5%;
}

h2 {
    color: #4C6571;
    font-size: 1.2em;
    font-weight: 600;
}


.nav_line {
    width: 100%;
    padding: 30px 0;
}

.nav_line img {
    height: 30px;
    width: 30px;
    margin: auto;
    display: block;
}

.dashed_line {
    border-bottom: 2px dashed #7A7A7A80;
    width: 96%;
    margin: 0 auto 60px;
    height: 30px;
    max-width: 1560px;
}

.description {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6em;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    width: 80%;
}

.container_up_btn {
    max-width: 1520px;
    width: 90%;
    margin: 150px auto;
    display: flex;
    justify-content: flex-end;
}

.up_btn {
    width: 46px;
    background-color: transparent;
    border: 0;
}

.up_btn img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

.up_btn:hover {
    opacity: 0.5;
    transition: .5s;
    cursor: pointer;
}

/*HTML*/

/*CONTENT*/

.content {
    /*min-height: 100%;*/
    /*background-color: white;*/
}

.content-inside {
    /*padding-top: 80px;*/
    /*padding-bottom: 710px;*/
    /*padding-bottom: 630px;*/
}

/*CONTENT*/

/*ACCESSIBILITY*/

.accessibility_btn {
    height: 56px;
    width: 56px;
    position: fixed;
    left: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 50;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    background-color: #73a4bc;
    padding: 0;
}

.accessibility_btn svg {
    width: 30px;
    height: 30px;
    fill: var(--color_white);
}

.accessibility_open button svg {
    width: 24px;
    height: 24px;
    fill: var(--color_white);
}

.accessibility_btn:hover {
    background-color: #FBBB00;
    transition: all 0.1s ease;
}

.accessibility_open {
    width: 50px;
    height: 255px;
    position: fixed;
    border-top: 1px solid white;
    border-right: 1px solid white;
    left: 4px;
    bottom: 54px;
    background-color: #94AAB6BA;
    z-index: 49;
    display: none;
}

/*.accessibility_open button svg{*/
/*    height: 24px;*/
/*    width: 24px;*/
/*    fill: var(--color_white);*/
/*}*/

.accessibility_open button {
    border: none;
    height: 50px;
    width: 50px;
    border-top: 1px solid white;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
}

.accessibility_open > button:nth-child(1) {
    background-color: #73a4bc;
    border-top: none;
}

.accessibility_open button:hover {
    background-color: #FBBB00;
    transition: 0.2s;
}

.show_accessibility {
    display: block;
    text-transform: none;
    transition: .4s ease-in-out;
}

/*ACCESSIBILITY*/

/*FOOTER*/


footer {
    background-color: white;
    border-top: 2px dashed #E7E7E7;
}

footer p {
    color: #4C6571;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6em;
}

footer a {
    color: #4C6571;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6em;
    display: block;
    width: 90%;
    margin: auto;
}

.footer_logo {
    height: 100px;
    width: 90%;
    max-width: 1600px;
    margin: -50px auto 0;
}

.footer_logo img {
    width: 100px;
    height: 100px;
    margin: auto;
    display: block;
}

.footer_content {
    width: 90%;
    max-width: 1600px;
    margin: auto
}

.contact_icons {
    display: flex;
    width: 90%;
    max-width: 150px;
    margin: auto;
    justify-content: center;
}

.contact_icons div {
    width: 24px;
    height: 24px;
    margin: 20px 8px;
}

.contact_icons div a {
    width: 100%;
}

.contact_icons div img {
    width: 24px;
    height: 24px;
}

.footer_line {
    background-color: #7A7A7A63;
    width: 100%;
    max-width: 1600px;
    height: 1px;
}

.footer_logos {
    display: flex;
    width: 90%;
    max-width: 430px;
    margin: 20px auto;
    justify-content: space-around;
}

.footer_logos div {
    width: 20%;
}

.footer_logos div img {
    width: 100%;
}

.footer_content p > a {
    margin: unset;
    text-align: right;
    display: unset;
    width: unset;
    font-size: unset;
}

.recent_updates {
    width: 90%;
    max-width: 992px;
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recent_updates a {
    width: 100%;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
}

.recent_updates a:hover {
    color: #FBBB00;
    font-family: Heebo_bold, sans-serif;
}

.powered_pdac {
    text-align: center;
    width: 100%;
}

.fotter_logos {
    display: flex;
}

.fotter_logos img {
    width: 50px;
    margin-left: 10px;
}

/*FOOTER*/

/*MAIN COVER*/

.main_cover {
    width: 100%;
    position: relative;
    height: 540px;
}

.cover_content {
    position: absolute;
    width: 90%;
    z-index: 6;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.cover_content p.title {
    color: white;
    text-align: center;
    font-family: Heebo_Light, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 0;
}

.cover_content button {
    color: white;
    display: block;
    margin: 20px auto 0;
    background: unset;
    height: 36px;
    border: 1px solid white;
    font-family: Heebo_Light, sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 0.7em;
    letter-spacing: 0.5px;
    /*border-width: 1px;*/
    border-radius: 0;
}

.cover_content button:hover {
    background-color: #4C6571AB;
    transition: .4s ease-in-out;
}

.item {
    position: relative;
    width: auto;
    height: 540px;
    overflow: hidden;
}

.item img {
    position: absolute;
    height: auto;
    width: 100%;
    min-height: 100%;
    top: 50%;
    transform: translateY(-50%);
    object-fit: cover;
}

.black_cover {
    background-color: #00000059;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
}

.no_height {
    height: auto !important;
    min-height: 420px;
}

.no_position {
    position: unset !important;
    padding: 20px 0;
}

.owl-theme .owl-dots .owl-dot {
    display: none !important;
}

html body div#scroll_up.content div.content-inside div.guideline_box div.container div.main_cover div.owl-carousel.owl-theme.one.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-next {
    display: none;
}

html body div.content div.content-inside div.guideline_box div.container div.main_cover div.owl-carousel.owl-theme.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-prev {
    display: none;
}

html body main div.guideline_box div.container div.main_cover div.owl-carousel.owl-theme.one.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-prev,
html body main div.guideline_box div.container div.main_cover div.owl-carousel.owl-theme.one.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-next {
    display: none;
}

.owl-nav button {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 45%;
}

.owl-nav button:hover {
    background: 0 !important;
}

.owl-nav button.owl-prev {
    right: 0;
}

.owl-nav button.owl-next {
    left: 0;
}

.guideline_box {
    position: relative;
    height: 580px;
    width: calc(100% - 40px);
    max-width: 1640px;
    margin: 30px auto;
}

.guideline_left_top {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}

.guideline_right_top {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    top: 0;
    right: 0;
}

.guideline_left_bottom {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(270deg);
    bottom: 0;
    left: 0;
}

.guideline_right_bottom {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
    bottom: 0;
    right: 0;
}

.container {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin: auto;
}

.svg_size {
    width: 20px;
    height: 20px;
}

.cover_nav_mobile {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.cover_nav_mobile p {
    color: white;
    width: 90%;
    margin: auto;
    text-align: center;
}

.cover_nav_mobile button:nth-child(odd) {
    background-color: #C1D0D8DB;
}

.cover_nav_mobile button {
    background-color: #94AAB6BA;
    width: 25%;
    height: 140px;
    cursor: pointer;
}

.cover_nav_mobile button img {
    width: 40px;
    height: 40px;
    margin: 10px auto;
    display: block;
}

.cover_nav_mobile button:hover {
    background-color: #C4D3DAAD;
    transition: 0.5s;
}

.cover_nav_mobile button:hover img {
    margin-top: 6px;
    transition: 0.2s;
}

.cover_nav {
    display: flex;
    /*justify-content: flex-end;*/
    width: 100%;
    /*max-width: 50%;*/
    position: absolute;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 500px;
    left: 0;
    bottom: 0;
    z-index: 5;
}

.cover_nav p {
    color: white;
    width: 90%;
    font-size: 0.8em;
    margin: 0 auto;
    text-align: center;
}

.cover_nav a {
    background-color: #94AAB6BA;
    width: 25%;
    height: 126px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cover_nav a:nth-child(even) {
    background-color: #C1D0D8DB;
}

.cover_nav img {
    width: 50%;
    max-width: 60px;
    margin: 0 auto 10px;
    display: block;
}

.cover_nav a:hover {
    background-color: #C4D3DAAD;
    transition: 0.5s;
}

.cover_nav a:hover img {
    margin-top: 15px;
    transition: 0.2s;
}


.cover_nav_desktop {
    display: none;
    justify-content: flex-end;
    width: 99.9%;
    max-width: 50%;
    position: absolute;
    flex-wrap: wrap;
    flex-direction: row;
    left: 0;
    z-index: 5;
}

.cover_nav_desktop p {
    color: white;
    width: 90%;
    font-size: 1.1em;
    margin: auto;
    text-align: center;
}

.cover_nav_desktop button:nth-child(odd) {
    background-color: #C1D0D8DB;
}

.cover_nav_desktop div, .cover_nav_desktop button {
    background-color: #94AAB6BA;
    width: 33.3%;
    /*height: 166.7px;*/
    height: 179.7px;
    cursor: pointer;
    border: none;
}

.cover_nav_desktop button img {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    display: block;
}

.cover_nav_desktop button:hover {
    background-color: #C4D3DAAD;
    transition: 0.5s;
}

.cover_nav_desktop button:hover img {
    margin-top: 15px;
    transition: 0.2s;
}

/*MAIN COVER*/

/*WHAT WE DO*/

.about_text {
    max-width: 870px;
    width: calc(100% - 80px);
    margin: 30px auto;
    text-align: right;
    font-size: 1.1em;
    line-height: 1.5em;
}

.about_text h1 {
    color: #4C6571;
    font-weight: unset;
    font-size: 1em;
    line-height: 1.5em;
    letter-spacing: unset;
    text-align: center;
    width: 90%;
    margin: auto 5%;
}

.what_we_do {
    width: 90%;
    display: flex;
    max-width: 1500px;
    margin: 40px auto;
    justify-content: space-around;
}

.what_we_do div {
    max-width: 60px;
    width: 14%;
    margin-top: 10px;
}

.what_we_do div p {
    text-align: center;
    font-size: 0.6em;
    line-height: 1.2em;
    margin: 10px auto;
}

.what_we_do div:nth-child(odd) {
    max-width: 120px;
    width: 14%;
    margin-top: 0;
}

.what_we_do img {
    margin: auto;
    width: 100%;
}

.errow_icon {
    width: 7% !important;
}

/*END WHAT WE DO*/

/*ABOUT*/

.video_contents {
    position: absolute;
    z-index: 3;
    width: 90%;
    max-width: 1140px;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_contents p {
    width: 90%;
    margin: 20px auto;
    max-width: 780px;
    color: white;
    text-align: center;
    font-family: Heebo_Light, sans-serif;
    font-size: 1.1em;
    line-height: 1.7em;
}

#scroll_about {
    height: 600px;
}

.group_logos {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.group_logos div {
    width: 25%;
    max-width: 127px;
    max-height: 127px;
}

.group_logos div img {
    width: 100%;
}

.sizmore_logo {
    width: 100%;
    max-width: 400px;
    height: 60px;
    margin: 20px auto;
}

.sizmore_logo div img {
    width: 100%;
}

.bg_video_black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 2;
    opacity: .5;
}

.bg_video {
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: absolute;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 250px;
    width: auto;
    height: 100%;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    transition: 1s opacity;
    max-width: none;
}

/*END ABOUT*/

/*OUR SOLUTIONS*/

.our_solutions {
    width: 100%;
    background-color: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
}

.our_solutions_slider {
    height: 250px;
    width: calc(100% - 20px);
    margin: 10px;
}

.our_solutions_slider .owl-carousel .item {
    height: 250px;
}

.our_solutions_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 10px;
}

.our_solutions_content img {
    height: 50px;
    width: 50px;
}

.our_solutions_content h2 {
    margin: 15px 0
}

.our_solutions_content p {
    font-size: 1.1em;
    line-height: 1.5em;
    text-align: right;
}

.our_solutions_content button {
    /*border: none;*/
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    width: 160px;
    height: 40px;
    background-color: #FBBB00;
    margin: 20px 0;
}

.our_solutions_content button:hover {
    background-color: #73a4bc;
    transition: all 0.3s ease;
}

.item_title {
    position: absolute;
    z-index: 5;
    bottom: 20px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    display: block;
    text-shadow: 1px 1px #4C6571;
}


/*END OUR SOLUTIONS*/

/*PROJECTS STRIP*/

.projects_strip {
    max-width: 1280px;
    width: 90%;
    margin: 50px auto;
    position: relative;
}

.projects_strip_content {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.projects_content_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e6eff2;
    border: 1px solid #c5ccd1;
    padding: 30px 0;
}

.projects_content_item img {
    max-height: 250px;
    max-width: 250px;
    width: 50%;
    margin: 0 auto;
    display: block;
}

.projects_content_item img:hover {
    transform: scale(1.1);
    transition: .3s;
    cursor: pointer;
}

.projects_content_item h2 {
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.6em;
    margin: 10px auto;
}

.projects_content_item p {
    text-align: center;
    width: 80%;
    font-size: 1.1em;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.2em;
}

.projects_content_item button {
    width: 80px;
    margin: 15px auto 0;
    font-size: 1.1em;
    font-weight: 400;
    background: transparent;
    border: none;
    padding-bottom: 5px;
    border-bottom: 2px solid #4C6571;
}

.projects_content_item button:hover {
    transition: .4s;
    border-bottom: 2px solid #FBBB00;
}

.guidelines_pic, .projects_content_logo {
    display: none;
}


.modal, .modal2, .modal3 {
    display: none;
    position: fixed;
    z-index: 60;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    width: 90%;
    max-width: 900px;
}

.modal-content p.title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 2.1px;
    width: calc(100% - 100px);
}

.modal-content p {
    font-weight: 400;
    line-height: 1.6em;
    font-size: 1.1em;
    text-align: center;
    margin: 20px auto;
    width: 90%;
}

.modal-content img {
    width: 100%;
}

.popup_line {
    width: 18%;
    margin: auto;
    height: 2px;
    background-color: #4C6571;
}

.close, .close2, .close3 {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 20px;
    position: absolute;
}

.close:hover,
.close:focus,
.close2:hover,
.close2:focus,
.close3:hover,
.close3:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*END PROJECTS STRIP*/

/*COSTOMERS*/

.customers {
    max-width: 1680px;
    width: 90%;
    height: 240px;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6EFF2;
    margin: 50px auto;
}

.cost {
    padding: 30px 0;
    width: 100%;
}

.cost .item {
    height: 180px;
    width: 180px;
    margin: auto;
    display: block;
}

.customers .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.customers .owl-carousel {
    padding: 30px 50px;
}

/*END COSTOMERS*/

/*CONTACT*/

.contact_container {
    border: 2px dashed #7A7A7A80;
    max-width: 1520px;
    width: 90%;
    margin: 150px auto;
}

.contact_container.page {
    margin: 100px auto;
}

/*.contact_container.page input{*/
/*    width: 100%;*/
/*}*/
.contact_container_flex {
    display: flex;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.contact_container button {
    /*border: none;*/
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    width: 120px;
    height: 40px;
    background-color: #FBBB00;
    margin: 20px auto 60px;
}

.contact_container.page button {
    margin: 20px auto 40px;
}

.contact_container_content, .contact_container_form {
    width: 50%;
}

.contact_container_iframe {
    width: 90%;
    max-width: 1520px;
    margin: auto;
}

iframe {
    width: 100%;
}

.contact_container button:hover {
    background-color: #73a4bc;
    transition: all 0.3s ease;
}

form label {
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: 0;
    font-size: 0;
}

.communication_method {
    width: 90%;
    max-width: 992px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.communication_method img {
    display: block;
    margin: 0 auto 10px;
    width: 48px;
}

.communication_method a {
    width: 200px;
    margin: 15px;
    text-align: center;
    transition: 3s;
    cursor: pointer;
    width: 100%;
    border: 2px dashed #7A7A7A80;
    padding: 20px;
}

.communication_method a:hover img {
    transform: scale(1.2);
}

.communication_method a:hover p {
    color: #FBBB00;
    font-weight: bold;
}

/*END CONTACT*/

/*GRATITUD*/

.gratitude_box {
    width: 100%;
    /*    height: 100vh;*/
    min-height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.gratitude {
    background-color: white;
    width: 90%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 2px dashed #7A7A7A80;
}

.gratitude p {
    font-size: 1.2em;
    line-height: 1.5em;
}

.gratitude a {
    /*border: none;*/
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    width: 120px;
    height: 40px;
    background-color: #FBBB00;
    margin: 20px auto 0;
    display: block;
    line-height: normal;
}

.gratitude a:hover {
    background-color: #73a4bc;
    transition: all 0.3s ease;
}

.gratitude img {
    width: 100px;
    height: auto;
    margin: auto;
    display: block;
}

/*END GRATITUD*/

/* CATALOG */

.breadcrumbs {
    width: calc(100% - 80px);
    margin: 20px auto 0;
    display: inherit;
    max-width: 1420px;
}

.breadcrumbs a {
    color: #FBBB00;
    font-family: Heebo_Light, sans-serif;
    font-size: 1.1em;
}

.breadcrumbs a:hover {
    opacity: .6;
    text-decoration: underline;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1520px;
    width: 90%;
    margin: auto;
}

.gallery_item {
    width: 320px;
    padding: 15px;
    display: block;
    margin: 30px auto;
    border: 2px dashed #E7E7E7;
}

.gallery_item div {
    width: 100%;
    height: 320px;
    position: relative;
}

.gallery_item img {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery_item p {
    text-align: center;
    margin: 15px auto;
}

.project_strip {
    max-width: 992px;
    width: 90%;
    margin: auto;
}

.project_strip_pic {
    margin: 50px auto;
}

.project_strip_pic img {
    border-radius: 8px;
    margin: auto;
    width: 90%;
    max-width: 500px;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
}

.project_strip_pic.item {
    height: unset;
}

.category_name_flex {
    width: 90%;
    margin: auto;
    max-width: 1480px;
    display: flex;
    flex-direction: column;
}

.category_name {
    max-width: 992px;
    width: 90%;
    margin: 15px auto;
    padding: 30px 10px;
    border: 2px dashed #7A7A7A80;
    text-align: center;
    display: block;
    font-size: 1.2em;
}

.category_name:hover {
    background-color: aliceblue;
    transition: .3s;
    cursor: pointer;
}

/* END CATALOG */


@media (min-width: 480px) {
    .cover_nav_mobile div {
        height: 100px;
    }


}

@media (min-width: 600px) {
    /*footer {*/
    /*    height: 650px;*/
    /*    margin-top: -650px;*/
    /*}*/
    /*.content-inside {*/
    /*    padding-bottom: 570px;*/
    /*}*/
    .what_we_do div p {
        font-size: 1em;
        line-height: 1.6em;
    }

    .our_solutions_slider, .our_solutions_slider .owl-carousel .item {
        height: 380px;
    }

    .recent_updates a {
        max-width: 45%;
        text-align: right;
    }
}

@media (min-width: 768px) {
    .communication_method {
        flex-wrap: nowrap;
    }

    .our_solutions_content {
        padding: 15px 40px;
    }

    .our_solutions_content img {
        height: 70px;
        width: 70px;
    }

    #scroll_about {
        height: 850px;
    }

    .bg_video {
        height: 810px;
    }

    .video_contents p {
        font-size: 1.4em;
    }

    .sizmore_logo {
        height: 100px;
        margin: 50px auto;
    }

    .nav_line img {
        height: 40px;
        width: 40px;
    }

    .about_text {
        text-align: center;
    }

    .cover_nav_mobile {
        display: none;
    }

    .cover_nav_desktop {
        display: flex;
    }


    /*.guideline_box {*/
    /*    height: 540px;*/
    /*}*/
    .item, .our_solutions_slider, .our_solutions_slider .owl-carousel .item {
        height: 540px;
    }
}

@media (min-width: 992px) {
    .category_name_flex {
        flex-direction: row;
    }

    .category_name {
        margin: 15px 10px;
    }

    .recent_updates a {
        max-width: 22%;
    }

    .guidelines_mob {
        display: none;
    }

    .projects_strip_content {
        width: 89%;
        height: 75%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: row;
        max-width: 89%;
    }

    .projects_content_item {
        width: 35%;
        height: 100%;
    }

    .guidelines_pic {
        display: block;
    }

    .projects_content_logo {
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .projects_content_logo img {
        width: 114px;
        display: block;
        margin: auto;
    }

    /*
        .gratitude_box{
            height: calc(100vh - 300px);
        }
    */
    .contact_icons {
        justify-content: flex-end;
    }

    input {
        width: 24%;
    }

    .our_solutions_slider {
        /*height: 500px;*/
        width: calc(60% - 20px);
        background-color: #666;
        margin: 10px;
    }

    .our_solutions_content {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 40px;
    }

    /*footer {*/
    /*    height: 350px;*/
    /*    margin-top: -397px;*/
    /*}*/
    /*.content-inside {*/
    /*    padding-bottom: 400px;*/
    /*}*/
    .footer_logo {
        margin-top: -30px;
        margin-bottom: -50px;
    }

    .footer_logo img {
        margin-right: 0;
        width: 130px;
        height: 130px;
    }

    footer p {
        color: #4C6571;
        text-align: right;
        font-size: 0.9em;
        line-height: 1.6em;
        float: right;
        width: calc(100% - 300px);
        margin-right: 150px;
    }

    .conact_icons {
        float: left;
        justify-content: flex-start;
        margin: auto 0;
        width: 100%;
    }

    .footer_line {
        width: calc(100% - 150px);
        margin-right: 150px;
    }

    .footer_logos {
        float: right;
        margin-right: 150px;
    }

    /*.footer_content > a:nth-child(6) {*/
    /*    text-align: left;*/
    /*    float: left;*/
    /*    width: 200px;*/
    /*    margin-top: 60px;*/
    /*}*/
    .powered_pdac {
        text-align: center;
        margin: 20px 0;
    }

    .cover_nav {
        width: 99.9%;
        max-width: 50%;
        max-height: 540px;
    }

    .cover_nav a {
        height: 180px;
    }

    .cover_nav p {
        font-size: 1.1em;
    }

    .cover_nav img {
        width: 30%;
        margin: 0 auto 20px;
    }

    .cover_content p.title {
        text-align: right;
        font-size: 40px;
    }

    .cover_content button {
        margin: 20px 0 0 auto;
    }

    .cover_content {
        top: 35%;
    }
}

@media (min-width: 1200px) {
    .cover_content p.title {
        font-size: 52px;
    }

    .cover_content {
        top: 20%;
    }
}