* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Titillium Web', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
}

.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.pt-40{
    padding-top: 40px;
}
img{
    max-width: 100%;
    height: auto;
}


main {
    background: url('../images/bg.jpg') center no-repeat;
    background-size: cover;
    padding: 40px;
    color: #fff;
    height: 100%;
    min-height: 870px;
}
.container{
    max-width: 1140px;
    margin: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header a img{
    max-width: 270px;
}
header .contactNum {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

.bodyContent {
    padding-top: 50px;
    padding-bottom: 30px;
    height: 80%;
    min-height: 650px;
}

.bodyContent h1 {
    font-size: 60px;
    color: #fff;
    max-width: 720px;
    line-height: 70px;
}

.bodyContent h2 {
    max-width: 720px;
    font-size: 24px;
    margin-top: 20px;
    color: #fff;
}
.bodyContent a h3 {
    font-size: 32px;
    line-height: 40px;
    margin-top: 30px;
    display: inline-block;
    color: #fff;
    position: relative;
}
.bodyContent h3:after{
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -28px;
}
.groupImg{
    max-height: 230px;
}

footer {
    display: flex;
    justify-content: space-between;
}

.btnHolder:not(:last-child) {
    margin-right: 20px;
}

.btnHolder a {
    padding: 13px 15px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #fff;
    line-height: 30px;
    display: inline-block;
}

.btnHolder p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.iframeContain {
    width: 100%;
    /*height: 100%;*/
    padding: 40px;
}

.iframeContain iframe {
    border: none;
    min-height: 200px;
}

.poweredByText {
    text-align: center;
    font-size: 20px;
    color: #222;
    text-decoration: none;
}

@media(max-width:992px){
    main{
        height: auto;
        padding: 30px;
    }
}

@media(max-width:768px){
    
    header a img{
        max-width: 230px;
    }
    .bodyContent, .bodyContent .text-right {
        text-align: center;
    }
}

@media(max-width:600px) {
    header{
        flex-wrap: wrap;
        justify-content: center;
    }
    header .contactNum{
        margin: 0;
    }
    footer{
        display: block;
    }
    .btnHolder:not(:last-child){
        margin: 0 0 20px;
    }
    .btnHolder{
        text-align: center;
    }
    .bodyContent h1{
        font-size: 46px;
        line-height: 52px;
    }
}