* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
} 

html {
    width: 100%;
    height: auto;
}

body {
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}


.drilling {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    /* background-position-x: right;
    background-position-y: bottom; */
    background-position-x: center;
    background-position-y: 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.drilling__linear {
    width: 100%;
    min-height: 100vh;
    /* background-image: linear-gradient(to right, #ffffff 0%, #ffffff00 30%, #ffffff00 80%, #ffffff00 100%); */
    background-image: linear-gradient(to right, #f5f5f51c 0%, #f5f5f594 30%, #f5f5f5ce 50%, #f5f5f5cf 100% 100%);
    /* backdrop-filter: blur(4px); */
    display: flex;
}

.drilling__wrapper {
    margin: 0 auto;
    width: 90%;
    max-width: 1280px;
}

header {
    margin-top: 2vw;
    width: 100%;
    height: 5vw;
    display: flex;
    justify-content: space-between;
}

.header__container {
    width: calc(50% - 2vw);
    display: flex;
}

.header__container_flex {
    display: flex;
}

.header__container_flex-end {
    justify-content: flex-end;
}

.header__logo {
    margin: auto 0;
    max-height: 100%;
}

.header__company-name {
    margin: auto 0;
    margin-left: 1vw;
    font-size: 1vw;
    font-weight: 500;
    color: #101010;
}

.header__info {
    margin: auto 0;
}

.header__schedule {
    font-size: 1vw;
    font-weight: 600;
    color: #101010;
}

.header__phone {
    margin-top: 1vw;
    font-size: 1.2vw;
    font-weight: 600;
    color: #101010;
}

.header__btn {
    margin: auto 0;
    margin-left: 4vw;
    padding: .8vw 2vw;
    font-size: .9vw;
    font-weight: 500;
    color: #fff;
    background-color: #384aee;
    border: 2px solid #384aee;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-box-shadow: 0px 3px 20px 2px #384aee20;
    -moz-box-shadow: 0px 3px 20px 2px #384aee20;
    box-shadow: 0px 3px 20px 2px #384aee20;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.header__btn:hover {
    color: #384aee;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.drilling__title {
    margin-top: 4vw;
    width: 70%;
    font-size: 2.5vw;
    font-weight: 700;
    color: #101010;
    line-height: 1.2;
}

.drilling__title > span {
    font-weight: 700;
}

.drilling__desc {
    margin-top: 4vw;
    width: 70%;
    font-size: 1.2vw;
    font-weight: 600;
    color: #101010;
    line-height: 1.5;
}

.drilling__desc > span {
    color: #14ADE3;
}

.drilling__btn {
    margin-top: 2vw;
    margin-bottom: 4vw;
    padding: 1vw 2vw;
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    background-color: #2be773;
    border: 2px solid #2be773;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-box-shadow: 0px 3px 20px 2px #2be77330;
    -moz-box-shadow: 0px 3px 20px 2px #2be77330;
    box-shadow: 0px 3px 20px 2px #2be77330;
    display: inline-block;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.drilling__btn:hover {
    color: #2be773;
    background-color: #fff;
}

footer {
    width: 100%;
    background-color: #fff;
    display: flex;
}

.footer__wrapper {
    margin: 0 auto;
    padding: 2vw 0;
    width: 90%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__container {
    margin: auto 0;
    width: calc(33.33% - 1vw);
}

.footer__logo {
    width: 10vw;
    max-width: 100%;
}

.footer__copyright {
    font-size: .9vw;
    font-weight: 500;
    color: #101010da;
}

.footer__name {
    margin-bottom: 1vw;
    font-size: .9vw;
    font-weight: 500;
    color: #101010da;
}

.footer__container > .footer__name:last-of-type {
    margin-bottom: 0;
}

.footer__name > span {
    font-weight: 700;
    color: #101010;
}

.footer__information {
    font-size: .8vw;
    font-weight: 400;
    color: #101010ad;
}


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

    .drilling {
        padding-bottom: 4vw;
        min-height: auto;
    }

    .drilling__linear {
        min-height: auto;
    }
    
    header {
        height: auto;
        flex-direction: column;
    }

    .header__container {
        width: 100%;
    }

    header > .header__container:last-of-type {
        margin-top: 4vw;
    }

    .header__logo {
        width: 15vw;
    }

    .header__company-name {
        margin-left: 4vw;
        width: auto;
        font-size: 3vw;
    }

    .header__container_flex-end {
        justify-content: flex-start;
    }

    .header__schedule {
        font-size: 3vw;
    }

    .header__phone {
        margin-top: 1vw;
        font-size: 3.5vw;
    }

    .header__btn {
        padding: 3vw 8vw;
        font-size: 3vw;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .drilling__title {
        margin-top: 8vw;
        width: 100%;
        font-size: 5vw;
    }

    .drilling__desc {
        margin-top: 8vw;
        width: 100%;
        font-size: 3.5vw;
    }

    .drilling__btn {
        margin-top: 4vw;
        margin-bottom: 8vw;
        padding: 3vw 8vw;
        font-size: 3vw;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }


    /* footer */

    footer {
        margin-top: 4vw;
    }

    .footer__container {
        margin-bottom: 2vw;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer__logo {
        margin: 0 auto;
        width: 30vw;
    }

    .footer__copyright {
        font-size: 2.8vw;
        text-align: center;
    }

    .footer__name {
        margin-bottom: 2vw;
        font-size: 2.8vw;
        text-align: center;
    }

    .footer__information {
        font-size: 2.8vw;
        text-align: center;
    }

}

@media screen and (min-width: 1280px) {

    header {
        margin-top: 32px;
        height: 80px;
    }
    
    .header__container {
        width: calc(50% - 32px);
    }
    
    .header__company-name {
        margin-left: 16px;
        font-size: 16px;
    }
    
    .header__schedule {
        font-size: 16px;
    }
    
    .header__phone {
        margin-top: 16px;
        font-size: 20px;
    }
    
    .header__btn {
        margin-left: 64px;
        padding: 12px 32px;
        font-size: 14px;
    }
    
    .drilling__title {
        margin-top: 64px;
        font-size: 40px;
    }
    
    .drilling__desc {
        margin-top: 64px;
        font-size: 20px;
    }
    
    .drilling__btn {
        margin-top: 32px;
        margin-bottom: 64px;
        padding: 16px 32px;
        font-size: 16px;
    }

    /* footer */
    
    .footer__wrapper {
        padding: 32px 0;
    }
    
    .footer__container {
        width: calc(33.33% - 16px);
    }
    
    .footer__logo {
        width: 160px;
    }
    
    .footer__copyright {
        font-size: 14px;
    }
    
    .footer__name {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .footer__information {
        font-size: 12px;
    }
}

.drilling__wrapper header .header__container a{width:22%;}
.drilling__wrapper header .header__container a img{width:130px;height:auto;}
.imagehead {position: absolute; width: 42%; height: 100%; background-image: url(/wp-content/uploads/2026/01/image7-scaled.png); right: 0px; background-size: 100%; bottom: 0px; background-repeat: no-repeat; background-position: bottom; pointer-events: none;}
.drilling__linear {
    position: relative;
}

@media(max-width: 1450px) {

  .drilling__desc {
       max-width: 50%;
	   margin-top: 20px
    }
 .imagehead {
    
    width: 50%;   
}
    .drilling__title {
        font-size: 34px;

}
}
@media(max-width:700px){
	.imagehead{display: none;}
	
}
main#main {
    padding: 25px;
}
.formfield__checkbox_label a {
    color: blue !important;
}
.drilling__wrapper span {margin-top: -50px; display: block; text-align: left; margin-bottom: 30px; font-size: 18px}	
.drilling__wrapper span color {
    color: #2be773;
    text-transform: uppercase;
    background: #fff;
    padding: 0px 4px;
}
@media(max-width: 800px){
		body p.header__company-name {
    display: NONE;
}

body header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

body img.header__logo {
    width: 80px!important;
}

body .header__container {width: auto;}

body .header__container.header__container_flex.header__container_flex-end {
    margin-top: 0px;
}
	a.header__btn {
    padding: 5px;
    width: 50%!important;
}

a.header__phone {
    width: 1000%!important;
    display: block;
}
	p.drilling__desc {
    max-width: 100%;
}
	.drilling__linear {
    width: 100%;
    min-height: 80vh;
    /* background-image: linear-gradient(to right, #ffffff 0%, #ffffff00 30%, #ffffff00 80%, #ffffff00 100%); */
    background-image: linear-gradient(to right, #f5f5f5f5 0%, #f5f5f594 30%, #f5f5f5f7 50%, #f5f5f5f0 100% 100%);
    /* backdrop-filter: blur(4px); */
    display: flex;
		margin-bottom: -30px;
}
	h1.drilling__title {
    font-size: 25px!important;
	margin-top: 15%;
}
	.drilling__wrapper span {margin-top: -20px; display: block; text-align: center; margin-bottom: 20px; font-size: 14px}
	
}

	