*{
    margin: 0;
    padding: 0;
    font-family: Ubuntu-Light, Arial, Helvetica, sans-serif;
    font-weight: 300;
}
@font-face{
    font-family: "Ubuntu-Light";
    src: url("../fonts/Ubuntu-Light.ttf");
}
@font-face{
    font-family: "Ubuntu-Medium";
    src: url("../fonts/Ubuntu-Medium.ttf");
}

header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
}


header .wrapper {
    position: relative;
}
header a {
    display: flex;
    color: #888;
    align-items: center;
    padding: 1rem 0;
    transition: 0.25s;
    font-weight: bold;
}

header a:hover {
    opacity: 0.8;
}

li{
    list-style: none;
}
.btn{
    border: 0;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}
a{
    color:#333;
    text-decoration: none;
}
.btn-blue{
    background: #36A0E2;
    color: #fff;
    font-weight: bold;
   
}
.btn-light{
    background: #f9f9f9;
    border:1px solid #ddd;
    color: #333;
}
.btn-yellow{
    background: #ffe133;
    border-bottom:1px solid #edbd14;
    color: #333;
}

.icons img{
    width: 16px;
    height: auto;;
}
.green{
    color: green;
}
/***********************/
.wrapper{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}
.main-wrapper{
    background: url(../img/bg/bg.png) no-repeat;
    height: 636px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.index{
    position: relative;
    margin:60px 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 600px;
}
.index .logo{
    align-self: center;
}
.index h1{
    font-size: 2em;
    border: 3px solid #fff;
    padding:12px 10px;
    margin-top: 15px;
    align-self: center;
    font-family: "Ubuntu-Medium";
    letter-spacing: 1px;
}
.index h2{
    align-self: center;  
    position: relative;
    margin: 10px;
    letter-spacing: 0.5px;
    font-size: 1.4em;
}
.index h2::before,
.index h2::after{
    content: '';
    max-width: 100px;
    width: 100%;
    position: absolute;
    height: 1px;
    line-height: 30px;
    background: #fff;
    bottom: calc(50% - 1px);
}
.index h2::before{
    left: -120px;
}
.index h2::after{
    right: -120px;
}

.index form input{
   width: calc(100% - 10px);
   padding:5px ;
   font-size: 16px;
   border-radius: 3px;
   border: 0;
   outline: none;

}
.index form input:focus{
    border-radius: 0;
}
.index form p{
    font-size: 14px;
    color: rgba(197, 197, 197, 1);
    margin: 5px;
}
.index form button{
    border: 0;
    background: #36A0E2;
    margin: 20px auto;
    display: block;
    max-width:  250px;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1em;
    letter-spacing: .5px;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid transparent;
}
.index form button:hover{
    opacity: 0.8;
    box-shadow: 0 0 5px #fff,
                0 0 10px #36A0E2,
                0 0 20px #fff;
    border-color: #fff;
}

.index > ul  li{
    list-style-image: url(../img/icons/check.png);
    margin: 15px 25px;
    font-weight: bold;
}

.dropDown{
    position: relative;
}
.dropDown ul{
   
    position: absolute;
    width: calc(100% - 2px);
    background: #fff;
    border: 1px solid rgba(197, 197, 197, 1);
    max-height: 200px;
    overflow-y: scroll;
}
.dropDown ul::-webkit-scrollbar {
    width: 5px;
}
.dropDown ul::-webkit-scrollbar-thumb {
    background: #36A0E2;
    border-radius: 20px;
  }
.dropDown ul li{
    color: #333;
    padding: 5px 10px;
    cursor: pointer;
}

.dropDown ul li:hover{
    background: rgba(0, 0, 0, 0.05);
}

/****************************/
.services{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 50px auto;
    max-width: 1024px;
}
.services .card{
    display: flex;
    flex-direction: column;
    align-items: center;
}
/****************************/
.result{
    margin-top: 50px;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}
.result-header{
    display: flex;
    justify-content: space-between;
}
.result-header input,
.result-header span{
    color: #333;
}
.result-header input{
    padding: 10px;
    border-radius: 5px;
    border:solid 1px #ddd;
    background: #f9f9f9;
}
.well-location{
    width: 100%;
    max-width: 450px;
}
.well-type,
.well-depth{
    margin-left: 10px;
    width: 100%;
}
.well-type{
    max-width: 150px;
}
.well-depth{
    max-width: 30px; 
}

.result-content{
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-top: 50px;
}


.result-content-col-1 .card,
.result-content-col-2{
    background: #f9f9f9;
    border:1px solid #ddd;
    padding:20px 45px;
    border-radius: 5px;
    min-height: 440px;
}
.result-content-col-2 .card,
.result-content-col-2 .card div{
    display: flex;
    justify-content: space-between;
}
.result-content-col-2 .card div{
    flex-direction: column;
    justify-content: space-between;
}

.result-content-col-1,
.result-content-col-2{
    text-align: center;
}
.result-content-col-2
{
    max-width: 600px;
    width: 100%;
   
}
.result-content-col-1 .card ul,    
.result-content-col-2 .card ul{
    margin-top: 20px;
    max-width: 250px; 
    text-align: left; 
}
.result-content-col-1 .card ul li,    
.result-content-col-2 .card ul li{
    margin-top: 10px;
}
.result-content-col-2 .card h4{
    font-family: "Ubuntu-Medium";
    font-weight: bold;    
    font-style: italic;
    color: #333;
}

.result-content-col-1 h1,
.result-content-col-2 h1{
    font-size: 2.5em;
    font-weight: bold;
    color: #f4ad02;
    border-bottom:solid 2px #f4ad02;
    display: inline-flex;
    padding: 5px 10px;
    margin-bottom: 20px;
    
}

.result-content-col-1 button,
.result-content-col-2 button{
    margin:30px auto 0 auto;
    display: block;
}

.result-content-col-1 button{
    width: 100%;
}
.result-footer h1{
    margin-top: 30px;
    color: #333;
    font-size: 2em;
}
.result-footer h2{
    font-size: 1.8em;
}
.result-footer .btn{
    margin: 20px;
    margin-bottom: 0;
}
/*********************/
footer span {
    margin: 50px 0;
    font-size: 12px;
    text-align: center;
    display: block;
    color :#888;
    letter-spacing: 0.5px;
}

.modal{
    
    position: fixed;
    z-index:100;
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    display: none;
    animation: 0.5s linear  alternate show_block;
}
 @keyframes show_block 
 { 
     from { opacity:0 } 
     to { opacity:1 } 
}
.modal-body{
    margin: 0 10px;
    padding: 15px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
    background: #fff;
    position: fixed;
    position: relative;
}
.modal-body > button{
    position: absolute;
    top: 0px;
    right: 15px;
    padding: 0;
    height: 0;
    width: 0;
    background: transparent;
    font-weight: bold;
    font-size: 16px;
    font-family: "Ubuntu-Medium";
    color: #999;
    outline:none;
}
.modal-body form{
  text-align: center;
   width: 100%;
   margin: 0 auto;
   display: none;
   text-align: center;
}
.modal-body form section{
    max-width: 300px;
    margin: 15px auto;

    display:flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.modal-body form section .icons{
    position: absolute;
    right: -20px;
}
.modal-body form input{
    border-radius: 4px;
    outline: none;
    border: 1px solid #ddd;
    padding: 8px;
    transition: 0.3s;
}
.modal-body form input:focus{
    box-shadow: 0 0 5px rgb(122, 184, 223);
    border: 1px solid rgb(102, 182, 231);
}
.modal-body form button{
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.modal-body > button:hover{
    color: #3f3f3f;
}
.modal-body > p{
    display: none;
    font-size: 14px;
    line-height: 1.8em;
}
.modal-body form > p{
    margin-top: 10px;
}
.modal-body b{
    font-family: "Ubuntu-Medium";
    font-weight: bold;
}

.hide{
    display: none;
}
.show{
    display: block;
}


/***********************/
.well_bg{
    background: #000;
}
.well{
    background: url(../img/bg/bg2.jpg) center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    min-height: 100vh;
}
.well > h1,
.well > p{
    color: #fff;
}
.well p{
    font-size: 1.6em;
}
.well .logo{
    margin-top: 64px;
}
.title{
    font-weight: 800;
    text-transform: uppercase;
}

.title.line1{
    font-family: "Ubuntu-Medium";
    font-weight: normal;
    margin-top: 64px;
    font-size: 3.3em;
    line-height: 50px;
}
.title.line3{
    line-height: 36px;
    font-size: 3.1em;
    line-height: 40px;
}
.label_block{
    margin-top: 20px;
}
.label_block div{
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2em;
}
.label_block div img{
    margin-right: 10px;
}
.orange{
    color:#da4b28;
}
.label_block p{  
    font-size: 1.5em;
}


.cards{
    max-width: 960px;
    margin: 30px auto;
    display: flex;
    justify-content: space-around;
    color : #fff;
}
.cards .card p{
    font-family: "Ubuntu-Medium";
    font-size: 1em;
    letter-spacing: 0.5px;
}
.card .sprite{
    width: 64px;
    height: 65px;
    margin: 0 auto 20px;
} 
.sprite_1{
    background: url(../img/icons/big_icons.png) no-repeat 0 -195px;
}
.sprite_2{
    background: url(../img/icons/big_icons.png) no-repeat 0 -130px;
}
.sprite_3{
    background: url(../img/icons/big_icons.png) no-repeat 0 -65px;
}
.sprite_4{
    background: url(../img/icons/big_icons.png) no-repeat 0 0;
}

.well > button {
    margin-top: 40px;
    max-width: 352px;
    width: 100%;
    font-size: 1.4em;
    text-transform: uppercase;
    font-family: "Ubuntu-Medium";
    letter-spacing: 1px;
    padding: 15px 0;
    border-width:5px;
    border-radius: 8px;
}
.well > button:hover {
    color :#22b8f0;
}

.well footer span{
    margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
    .wrapper{
        justify-content: center;
        min-height: 100%;
        max-width: 100%;
        margin: 50 10px;
    }
    main{
        margin: 50 0px;
    }
}
@media screen and (max-width: 1000px) {
    main h1{
        font-size: 1em;
    }
    main h2{
        font-size: 1em;
    }
    main h2:after,
    main h2:before{
        display: none;
    }
    .result-header{
        flex-direction: column;
        align-items: center;
    }
    .result-header .well-location{
       max-width: 280px;
    }
    .result-header .well-location,
    .result-header label{
        margin: 10px;
    }
    .result-header input {
        width: 100%;
    }
    .result-content{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .result-content .card ul{
        text-align: center;
        justify-content: center;
    }
    .result-content-col-1{
        min-width: 300px;
    }
    .result-content-col-1 .card{
        min-height: 100%;
    }
    .result-content-col-2{
        max-width: 300px;
        margin-top: 30px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .result-content-col-2 .card{
        flex-direction: column;
        align-items: center;
    }
    .result-content-col-1 h1, 
    .result-content-col-2 h1{
        font-size: 1.5em;
    }
    .result-footer h1{
        font-size: 1.5em;
    }
    .result-footer h2{
        margin-top: 20px;
        font-size: 1em;
    }
    .result-footer .btn{
       width: 280px;
    }
    footer span {
        margin: 40px 0;
    }

    .title.line1{
        font-size: 2.3em;
    }
    .well p{
        font-size: 1.15em;
    }
    .title.line3{
        font-size: 2.2em;
    }
}
@media screen and (max-width: 650px) {
    .services{
        flex-direction: column;
        margin-top: 0;
    }
    .services .card{
        margin-top: 40px;
    }

    .well .logo{
        margin-top: 35px;
    }
    .title.line1{
        font-size: 1.35em;
        margin-top: 20px;
        line-height: 32px;
    }
    .well p{
        font-size: 1.24em;
    }
    .title.line3{
        font-size: 1.25em;
    }
    .cards{
        margin-top: 0;
        flex-direction: column;
    }
    .cards .card{
        margin-top: 20px;
    }
    .well > button {
       max-width:300px;
      
    }
    .well > footer {
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 430px) {
    .index > h2 {
        font-size: 1.15em;
    }
    main{
        margin:50px 5px;
        z-index: 1;
    }
    .main-wrapper{
        position: relative;
    }
    .main-wrapper::before{
        z-index: 1;
        content: "";
        position: absolute;
        background: rgba(0, 0, 0, 0.3);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }
    main h1{
        border-right: 0;
        border-left: 0;
        font-size: 0.9em;
    }
    main h2{
        font-size: 0.9em;
    }
    main form button{
        max-width: 100%;
    }
}