:root {
    /*nav*/
    /*font-colors*/
    --defaultColor: #9d9d9d;
    --firstUlliColor: black;
    --secondColor: #555;
    --thColor: white;
    --hoverDefaultColor: white;
    --activeColor: red;
    --hover_menu_item: orangered;
    /*background*/
    --defaultBgli: transparent;
    --firstBgColor: #3d3d3d;
    --secondBgColor: brown;
    --thBgColor: black;
    --hoverBgColor: red;
    --hoverLiBgColor: rgba(0, 0, 0, 0.3);
    /*boxShadows*/
    --boxShadow: rgba(0, 0, 0, 0.5);
    /*fontSize*/
    --defaultUlliAFontSize: 13px;
    --defaultUlUlliAFontSize: 12px;
    --defaultH2FontSize: 18px;
    --defaultSpanFontSize: 10px;
    --defaultPFontSize: 12px;
    /*font-family*/
    --fontFamilyDefault: Raleway, sans-serif;
    /*Up-Normal-font*/
    --UpperCase: uppercase;
    --LowerCase: lowercase;
    /*Font-Weight*/
    --boldFont: bold;
}

html, body {  
    box-sizing: border-box;
}
html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
}

body::after {
    content: '';
    display: block;
    height: 40px; /* Set same as footer's height */
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*contact*/

.et-pb-contact-message {
    font-size: 20px !important;
}

/*Header*/

header {
    background-color: var(--thColor);
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    transition: 0.5s ease-in-out;
    z-index: 999;
}

.page-wrap {
    padding: 0;
}

.main-content {
    margin-top: 0;
}

header .top-menu-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .container {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    height: 100% !important;
    width: 80% !important;
    position: relative;
}

header .top-menu-bar li a { 
    padding: .25rem 1rem;
    color: var(--firstUlliColor);
    font-size: var(--defaultUlliAFontSize);
    text-decoration: none;
    font-family: var(--fontFamilyDefault);
    text-transform: var(--UpperCase);
    font-weight: var(--boldFont);
}

ul li.current_page_item a {
    color: #05a85d !important;
}

header .top-menu-bar li {
    position: relative;
    padding: 1rem 1rem;
}

header .top-menu-bar li:hover {
    background-color: transparent;
}

header .top-menu-bar li:hover a {
    color: #05a85d;
}

header .top-menu-bar li:first-child a {
    padding-left: 0;
}

header .top-menu-bar li:last-child a {
    padding-right: 0;
}

header .top-menu-bar li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--firstBgColor);
    margin: 0;
    padding: 0;
    list-style-type: none;
    min-width: 100%;
    width: max-content;
    z-index: 999;
}

header .top-menu-bar li .sub-menu a {
    color: var(--defaultColor);
    font-size: var(--defaultUlUlliAFontSize);
    padding: .20rem 1rem;
    text-align: left;
    display: block;
    text-decoration: none;
    font-family: var(--fontFamilyDefault);
}

header .top-menu-bar li .sub-menu a:hover {
    color: var(--hoverDefaultColor);
}

header .top-menu-bar > .menu-item-has-children:hover > .sub-menu {
    display: block;
}

header .top-menu-bar .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
    display: block;
}

header .top-menu-bar .sub-menu li .sub-menu {
    top: 0;
    left: 100%;
}

.screen-reader-text {
    display: none;
}

.hamburger {
    position: absolute;
    top: 4rem;
    right: 2rem;
    font-size: 20px;
    cursor: pointer;
    color: var(--defaultColor);
    display: none;
    transition: 0.5s ease-in-out;
}

.hamburger:hover {
    color: #888;
}

/*logo*/

#logo-top-section {
    display: none;
}

.logo-img {
    position: absolute;
    top: -25px;
    left: 0;
    width: 200px !important;
    height: 50px;
    max-width: 200px !important;
    max-height: 80px !important;
    transition: 0.5s ease-in-out;
}

.logo-img-modify {
    position: absolute;
    top: -25px !important;
    left: 0;
    /* width: 200px !important; */
    height: 70px !important;
    max-width: 200px !important;
    transition: 0.5s ease-in-out;
}

#img-container-menu {
    position: absolute;
    left: 30px;
}

.top-menu-bar .menu-search-icon {
    position: absolute;
    right: 30px;
    display: none;
}

#a-logo {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

/*search section*/

.search-box {
    position: fixed;
    top: 100px;
    right: 0;
    width: 300px;
    height: 40px;
    background-color: transparent;
    transition: 0.5s ease-in-out;
    z-index: 999;
}

#search-box {
    display: none;
}

.search-box input {
    position: absolute;
    height: 100%;
    width: 100%;
    border: none;
    background-color: var(--secondColor);
    color: var(--thColor);
    outline: none;
    font-size: 12px;
    padding: 5px;
}

.dvl-search-nothing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    border: 1px solid #000;
    padding: 10px;
}

.AnimIn {
    animation: inputAnimationIn 0.3s ease forwards;
}

.AnimOut {
    animation: inputAnimationOut 0.3s ease forwards;
}

/*Animations*/

@keyframes inputAnimationIn {
    0% {
        height: 0%;
    }
  
    100% {
        height: 100%;
    }
}

@keyframes inputAnimationOut {
    0% {
        height: 100%;
    }
  
    100% {
        height: 0%;
    }
}

@keyframes AnimMe {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
  
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

#searchsubmit {
    display: none;
}

/*footer*/

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 999;
}

footer .footer {
    height: 40px;
    width: 100%;
    background-color: var(--thBgColor);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer {
    color: var(--defaultColor);
}

footer .footer #footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--defaultColor);
    margin: 0 1rem;
    position: relative;
    font-size: 13px;
    text-decoration: none !important;
}

footer .footer #footer-info i {
    font-size: 15px;
    margin-right: 2px;
}

/*start - banners divi*/

/*footer divi*/

.et_pb_column.et_pb_column_1_2.et_pb_column_6.et_pb_css_mix_blend_mode_passthrough {
    width: 100% !important;
}

.et_pb_section.et_pb_section_2.et_pb_with_background.et_section_regular.et_section_transparent {
    top: 10px;
}

/*modal*/

.modalBox {
    position: fixed;
    width: 450px;
    height: 150px;
    bottom: 60px;
    right: 15%;
    background-color: var(--thColor);
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    visibility: hidden;
    animation: none;
    z-index: 999 !important;
    opacity: 0;
    transition: 2s;
    transform: translateX(-50%) translateY(-50px);
}

.modalBox::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: inherit;
    bottom: -10px;
    right: 80px !important;
    transform: rotate(45deg);
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    z-index: -1 !important;
}

#footer-info {
    height: 100%;
}

#footer-info:hover .modalBox {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
}

.modalBox .modalIcon {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    padding: 5px;
    z-index: 2;
}

.modalBox .modalIcon i {
    font-size: 20px;
    color: var(--defaultColor);
}

.modalBox .modalIcon i:hover {
    color: var(--hoverDefaultColor);
}

.modalBox .modal-for-content {
    display: block;
    height: 100%;
    background-color: var(--thColor);
    z-index: 999;
}

.modalBox .modal-for-content .modalImg {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.modalBox .modal-for-content .modalImg img {
    width: 40px;
    height: 40px;
}

.modalBox .modal-for-content .modalImg p {
    color: var(--defaultColor);
    font-size: var(--defaultUlliAFontSize);
    margin-left: 10px;
}

.modalBox .modal-for-content .modalContent {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid var(--defaultColor);
}

.modalBox .modal-for-content .modalContent span {
    color: var(--defaultColor);
    font-size: var(--defaultUlUlliAFontSize);
    text-align: center;
    margin-right: 5px;
}

.modalBox .modal-for-content .modalContent span i {
    margin-right: 5px;
    font-size: var(--defaultUlliAFontSize);
}

.modalBox .modal-for-content .modalContent span a {
    text-decoration: none;
    color: var(--defaultColor);
}

.fa-caret-right {
    position: absolute;
    right: 0;
    margin-right: 5px;
}


/*video section

video {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
  
#vid_header {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill;
}

*/
/*page-info

.title {
    text-align: center;
    padding: 10px;
    font-size: 50px;
}

.content {
    grid-area: header;
    width: 98%;
    margin: 10px auto;
    background-color: white;
    font-family: 'Original Surfer', cursive;
}
  
.content-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
      "header";
}

.card-group-2 {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
  
.card-group-2 .card {
    width: 50%;
    height: 300px;
}
  
.card-group-2 .card img {
    width: 90%;
    height: 100%;
}
  
.card-group-2 .card .card-info {
    width: 90%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: 'Original Surfer', cursive;
    color: white;
    position: relative;
    top: -322px;
    left: 33px;
    transition: 1s ease-in-out;
    cursor: pointer;
    opacity: 0;
}
  
.card-group-2 .card .card-info:hover {
    opacity: 1;
}
  
.card-group-2 .card .card-info h3,
.card-group-2 .card .card-info p {
    padding: 10px;
}
  
.card-group-2 .card .card-info h3 {
    width: 50%;
    padding: 10px;
    color: #222;
    background-color: crimson;
}
  
.card-group-2 .card .card-info p {
    word-wrap: break-word;
    max-height: 100px;
}

.card-box {
    position: relative;
    width: 45%;
    height: 400px;
    background-color: #262626;
    overflow: hidden;
    margin: 0 auto 10px auto;
}
  
.input-box,
.toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    outline: none;
    z-index: 10;
}
  
.input-box {
    opacity: 0;
    cursor: pointer;
}
  
.toggle {
    pointer-events: none;
    border-radius: 50%;
    background-color: white;
    transition: 0.5s;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    box-shadow: 0 0 0 0px rgba(0,0,0,0.5);
    transition: 1s ease-in-out;
}
  
.input-box:checked ~ .toggle {
    box-shadow: 0 0 0 4000px rgba(0,0,0,0.5);
    transform: rotate(225deg);
}
  
.imgBx,
.text-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.imgBx img:hover {
    animation: zoomCard 4s linear forwards;
}
  
.text-details {
    padding: 20px;
    box-sizing: border-box;
    z-index: 11;
    pointer-events: none;
    transition: 0.5s;
    opacity: 0;
}
  
.input-box:checked ~ .text-details {
    opacity: 1;
    transition-delay: 0.5s;
}
  
.text-details h2 {
    margin-bottom: 5px;
    color: white;
    background-color: crimson;
}
  
.text-details p {
    margin: 0;
    padding: 0;
    color: white;
}

*/
/*page-form

.card-group-4 {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    justify-content: center;
}
  
.card-group-4 .card-4 {
    width: 30%;
    height: 500px;
    border: 2px solid #222;
    margin: 0 5px 0 5px;
    -webkit-box-shadow: 5px 5px 15px 0px #000000; 
    box-shadow: 5px 5px 15px 0px #000000;
}
  
.card-group-4 .card-4 .img-container {
    width: 100%;
    height: 300px;
    overflow: hidden; 
}

.card-group-4 .card-4 h2 {
    width: 90%;
    display: block;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    font-size: var(--defaultH2FontSize);
}

.card-group-4 .card-4 p {
    width: 90%;
    display: block;
    margin: 5px auto;
    font-size: var(--defaultPFontSize);
}
  
.card-group-4 .card-4 .card-img img {
    width: 100%;
    height: 300px;
    background-size: cover; 
    background-position: center;
}
  
.card-group-4 .card-4 .card-img:hover {
    animation: zoomCard 2s linear forwards;
}
  
@keyframes zoomCard {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
  
.paggination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-bottom: 50px;
}

.paggination a {
    background-color: var(--firstBgColor);
    color: var(--thColor);
    text-decoration: none;
    padding: 10px;
}
*/
/* page 

.page-box {
    margin-top: 40px;
    margin-bottom: 100px;
}

.page-box .content-page .item-left .item-left-box .thetitle {
    font-size: 30px;
    color: var(--firstUlliColor);
    padding: 20px;
    border-bottom: 2px dotted var(--defaultColor);
}

.page-box .content-page .item-left .item-left-box span {
    font-size: 12px;
    padding: 5px;
    margin-top: 10px;
    margin-left: 20px;
    background-color: var(--firstUlliColor);
    color: var(--thColor);
    border-radius: 10px;
}

.page-box .content-page .item-left .item-left-box .thecontent p {
    font-size: 18px;
    color: var(--firstUlliColor);
    padding: 20px;
}

.page-box .content-page .item-left .item-left-box {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--thColor);
    box-shadow: 8px 8px 2px -3px rgba(0, 0, 0, 0.5);
}

.page-box .content-page .item-left {
    padding: 10px;
}

.item-left {
    grid-area: content-left;
    margin-left: 40px;
    margin-right: 40px;
}
.item-sidebar {
    grid-area: right-sidebar;
    margin-right: 40px;
}

.page-box .content-page .item-sidebar #sidebar ul {
    padding: 10px;
    background-color: var(--firstBgColor);
    list-style: none;
    margin-left: 5px;
    margin-right: 5px;
}

.page-box .content-page .item-sidebar #sidebar ul li .widget-title {
    font-size: var(--defaultUlliAFontSize);
    color: var(--firstUlliColor);
    background-color: var(--thColor);
    padding: 5px;
    position: relative;
}


.page-box .content-page .item-sidebar #sidebar ul li .widget-title::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    border: 1rem solid transparent;
    border-bottom-color: var(--thColor);
    -moz-transform: rotate(180deg); 
}


.page-box .content-page .item-sidebar #sidebar ul li .textwidget p {
    font-size: var(--defaultUlUlliAFontSize);
    color: var(--defaultColor);
}

.page-box .content-page .item-sidebar #sidebar ul li .postform {
    background-color: var(--defaultColor);
    color: white;
    height: 30px;
    outline: none;
    border: none;
}
  
.content-page {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
      "content-left right-sidebar";
}
*/


/*404.php*/

.content-404 {	
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #818181;
    text-align: center;
}

.content-404 .h1-404 {
    width: 100px;
    margin: 0 auto;
    border: 2px solid black;
    padding: 5px;
}

.content-404 h1, h2{
	text-align: center;
}

.content-404 h1{
	color: black;
	font-size: 30px;
}

.content-404 h2{
	padding: 15px 0;
    font-size: 20px;
    margin-bottom: 20px;
}
.content-404 .button-404{
	max-width: 200px;
    font-weight: bold;
	padding: 10px 10px;
	border: 2px solid #000;
}
.content-404 .button-404:hover{
	background-color: #1abc9c;
	color: #fff;
}

/*single*/



/*pages-new*/

.et-db #et-boc .et-l .et_parallax_bg_wrap {
    bottom: -10px !important;
}

.et_pb_module.et_pb_text.et_pb_text_7.et_pb_text_align_left.et_pb_bg_layout_dark {
    text-align: center !important;
}

/*index.php*/

.dvl-banner-first .et_pb_image_wrap {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.dvl-banner-first .et_pb_image_wrap img {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
}

.dvl-banner-first .et_pb_image_wrap img:hover {
    cursor: pointer;
    opacity: 0.8 !important;
    animation: zoomCard 2s linear forwards;
}

.et_pb_section.et_pb_section_0.et_section_regular.et_section_transparent {
    padding: 0 !important;
}

.et_pb_row.et_pb_row_0.et_pb_gutters1 {
    padding: 0 !important;
}

.et_pb_section.et_pb_section_0.et_section_regular.et_section_transparent {
    top: 10px !important;
}

@keyframes zoomCard {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.dvl-header-title-left {
    width: 100% !important;
    color: white !important;
    text-align: center !important;
    z-index: 999 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 30px !important;
    background: linear-gradient(to right, #02af60 50%, transparent 50%) !important;
    background-size: 300% 100% !important;
    background-position: bottom right !important;
    transition: all .7s ease-out !important;
}

.dvl-header-title-left:hover {
    background-position: bottom left !important;
}

.dvl-header-title-left h1 {
    font-size: 34px !important;
    font-weight: bold !important;
    text-shadow: 2px 2px #7c7d7d !important;
}

.dvl-header-title-left a {
    color: white !important;
}

.dvl-header-title-left a p {
    border: 2px solid white !important;
    font-size: 24px !important;
    width: 300px !important;
    margin: 0 auto !important;
    cursor: pointer;
    padding: 20px !important;
    background-color: transparent !important;
    background: linear-gradient(to right, #029652 50%, transparent 50%) !important;
    background-size: 300% 100% !important;
    background-position: bottom right !important;
    transition: all .7s ease-out !important;
}

.dvl-header-title-left a p:hover {
    background-position: bottom left !important;
}

.dvl-header-title-right {
    width: 100% !important;
    color: white !important;
    text-align: center !important;
    z-index: 999 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 30px !important;
    background: linear-gradient(to right, #02af60 50%, transparent 50%) !important;
    background-size: 300% 100% !important;
    background-position: bottom right !important;
    transition: all .7s ease-out !important;
}

.dvl-header-title-right:hover {
    background-position: bottom left !important;
}

.dvl-header-title-right h1 {
    font-size: 34px !important;
    font-weight: bold !important;
    text-shadow: 2px 2px #7c7d7d !important;
}

.dvl-header-title-right a {
    color: white !important;
}

.dvl-header-title-right a p {
    border: 2px solid white !important;
    font-size: 24px !important;
    width: 300px !important;
    margin: 0 auto !important;
    cursor: pointer;
    padding: 20px !important;
    background-color: transparent !important;
    background: linear-gradient(to right, #029652 50%, transparent 50%) !important;
    background-size: 300% 100% !important;
    background-position: bottom right !important;
    transition: all .7s ease-out !important;
}

.dvl-header-title-right a p:hover {
    background-position: bottom left !important;
}

/*media-mobile*/

@media only screen and (max-width: 1050px) {

    footer .footer {
        padding: 10px;
    }

    footer .footer .modalBox .modalContent span a {
        font-size: 9px !important;
    }

    header {
        z-index: 999;
    }

    header .container {
        width: 100% !important;
    }

    header .top-menu-bar {
        display: block;
        background-color: var(--thColor);
        position: absolute;
        top: 100px;
        left: -100%;
        width: 100%;
        height: 50vh;
        text-align: left;
        overflow-y: auto;
        transition: 0.5s ease-in-out;
    }

    header .top-menu-bar::-webkit-scrollbar { 
        width: 1em;
    }
    
    header .top-menu-bar::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }
    
    header .top-menu-bar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
    }

    header .top-menu-bar.active {
        left: 0;
    }

    header .top-menu-bar li {
        display: block;
        position: relative;
        margin: 5px auto 5px auto;
        padding: 8px;
        width: 90%;
        border-bottom: 1px solid var(--defaultColor);
    }

    header .top-menu-bar li:first-child {
        margin-top: 30px;
    }

    header .top-menu-bar li:last-child {
        border: none;
    }

    header .top-menu-bar li a {
        color: var(--firstUlliColor);
    }

    header .top-menu-bar li a:hover {
        color: #222;
    }

    .hamburger {
        display: block;
        z-index: 999;
    }

    header .top-menu-bar li .sub-menu {
        background-color: var(--thColor);
    }

    header .top-menu-bar li .sub-menu li {
        border-top: 1px solid var(--defaultColor);
    }

    header .top-menu-bar li .sub-menu li:last-child {
        border-bottom: 1px solid var(--defaultColor);
    }

    header .top-menu-bar li .sub-menu li a:hover {
        color: cyan;
    }

    header .top-menu-bar li .sub-menu li .sub-menu {
        width: 100px;
    }

    #search-box {
        display: none;
    }

    .search-box {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    header .top-menu-bar > .menu-item-has-children:hover > .sub-menu {
        display: none;
    }

    header .top-menu-bar .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
        display: none;
    }

    header .top-menu-bar > .menu-item-has-children.activeUlBlock > .sub-menu {
        position: static;
        display: block;
    }

    header .top-menu-bar .menu-item-has-children .sub-menu > .menu-item-has-children.activeUlBlock1 .sub-menu {
        position: static;
        display: block;
    }

    .logo-img {
        left: 0;
    }

    .logo-img-modify {
        left: 0;
    }

    .modalBox {
        right: -50% !important;
        width: 100% !important;
    }

    .dvl-neu-header-title .et_pb_text_inner h1 {
        font-size: 25px !important;
    }

    .dvl-content-img-zoomer .et_pb_image_wrap img {
        width: 200px !important;
        height: 200px !important;
    }
}

@media only screen and (max-width: 980px) {
    /*contact*/

    .et_pb_module.et_pb_text.et_pb_text_0.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    .et_pb_module.et_pb_text.et_pb_text_1.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    .et_pb_module.et_pb_text.et_pb_text_2.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    .et_pb_module.et_pb_text.et_pb_text_3.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    .et_pb_module.et_pb_text.et_pb_text_4.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    .et_pb_module.et_pb_text.et_pb_text_5.et_pb_text_align_left.et_pb_bg_layout_light {
        text-align: center !important;
    }

    /*page-start*/

    .et-db #et-boc .et-l .et_pb_image_0.et_pb_image_0 {
        height: 50vh !important;
    }

    .et-db #et-boc .et-l .et_pb_image_1.et_pb_image_1:not(.dvl_logo_footer-erd) {
        height: 50vh !important;
    }

    .dvl-two-banners {
        height: 100vh !important;
    }

    .full_screen_start .et_pb_image_wrap {
        height: 50vh !important;
    } 

    .dvl-banner-first {
        height: 50vh !important;
    }
    
    .dvl-banner-first {
        height: 50vh !important;
    }
}



