/*! HTML5 Boilerplate v7.2.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   *,
   *::before,
   *::after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
   }
   
   /**
    * Fonts
    */
   
    /* @font-face {
     font-family: 'Gotham-Medium';
     src: url('../fonts/Gotham-Medium/Gotham-Medium.eot');
     src: url('../fonts/Gotham-Medium/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Gotham-Medium/Gotham-Medium.woff') format('woff'),
          url('../fonts/Gotham-Medium/Gotham-Medium.woff2') format('woff2'),
          url('../fonts/Gotham-Medium/Gotham-Medium.ttf') format('truetype'),
          url('../fonts/Gotham-Medium/Gotham-Medium.otf') format('otf');
     font-style: normal;
   }
   
   @font-face {
     font-family: 'Gotham-Light';
     src: url('../fonts/Gotham-Light/Gotham-Light.eot');
     src: url('../fonts/Gotham-Light/Gotham-Light.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Gotham-Light/Gotham-Light.woff') format('woff'),
          url('../fonts/Gotham-Light/Gotham-Light.woff2') format('woff2'),
          url('../fonts/Gotham-Light/Gotham-Light.ttf') format('truetype'),
          url('../fonts/Gotham-Light/Gotham-Light.otf') format('otf');
     font-style: normal;
   } */

     @font-face {
     font-family: 'OpenSans';
     src: url('../fonts/OpenSans/OpenSans.eot');
     src: url('../fonts/OpenSans/OpenSans.eot?#iefix') format('embedded-opentype'),
          url('../fonts/OpenSans/OpenSans.woff') format('woff'),
          url('../fonts/OpenSans/OpenSans.ttf') format('ttf'),
          url('../fonts/OpenSans/OpenSans.svg') format('svg');
     font-style: normal;
     font-weight: normal;
   }
   
   html {
     color: #222;
     font-size: 1em;
     line-height: 1.4;
     height:100%;
   }
   
   body {
     height: 100%;
     margin: 0;
     font-family: 'OpenSans', Helvetica, sans-serif;
   }
   
   /*
    * Remove text-shadow in selection highlight:
    * https://twitter.com/miketaylr/status/12228805301
    *
    * Vendor-prefixed and regular ::selection selectors cannot be combined:
    * https://stackoverflow.com/a/16982510/7133471
    *
    * Customize the background color to match your design.
    */
   
   ::-moz-selection {
     background: #b3d4fc;
     text-shadow: none;
   }
   
   ::selection {
     background: #b3d4fc;
     text-shadow: none;
   }
   
   /*
    * A better looking default horizontal rule
    */
   
   hr {
     display: block;
     height: 1px;
     border: 0;
     border-top: 1px solid #ccc;
     margin: 1em 0;
     padding: 0;
   }
   
   /*
    * Remove the gap between audio, canvas, iframes,
    * images, videos and the bottom of their containers:
    * https://github.com/h5bp/html5-boilerplate/issues/440
    */
   
   audio,
   canvas,
   iframe,
   img,
   svg,
   video {
     vertical-align: middle;
   }
   
   /*
    * Remove default fieldset styles.
    */
   
   fieldset {
     border: 0;
     margin: 0;
     padding: 0;
   }
   
   /*
    * Allow only vertical resizing of textareas.
    */
   
   textarea {
     resize: vertical;
   }
   
   /* ==========================================================================
      Browser Upgrade Prompt
      ========================================================================== */
   
   .browserupgrade {
     margin: 0.2em 0;
     background: #ccc;
     color: #000;
     padding: 0.2em 0;
   }
   
   /* ==========================================================================
      Author's custom styles
      ========================================================================== */
   
   /* ==========================================================================
      Helper classes
      ========================================================================== */
   
   /*
    * Hide visually and from screen readers
    */
   
   .hidden {
     display: none !important;
   }
   
   /*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
   */
   
   .sr-only {
     border: 0;
     clip: rect(0, 0, 0, 0);
     height: 1px;
     margin: -1px;
     overflow: hidden;
     padding: 0;
     position: absolute;
     white-space: nowrap;
     width: 1px;
     /* 1 */
   }
   
   /*
   * Extends the .sr-only class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638
   */
   
   .sr-only.focusable:active,
   .sr-only.focusable:focus {
     clip: auto;
     height: auto;
     margin: 0;
     overflow: visible;
     position: static;
     white-space: inherit;
     width: auto;
   }
   
   /*
   * Hide visually and from screen readers, but maintain layout
   */
   
   .invisible {
     visibility: hidden;
   }
   
   /*
   * Clearfix: contain floats
   *
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    `contenteditable` attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that receive the `clearfix` class.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.
   */
   
   .clearfix:before,
   .clearfix:after {
     content: " ";
     /* 1 */
     display: table;
     /* 2 */
   }
   
   .clearfix:after {
     clear: both;
   }
   
   /* ==========================================================================
      EXAMPLE Media Queries for Responsive Design.
      These examples override the primary ('mobile first') styles.
      Modify as content requires.
      ========================================================================== */
   
   @media only screen and (min-width: 35em) {
     /* Style adjustments for viewports that meet the condition */
   }
   
   @media print,
     (-webkit-min-device-pixel-ratio: 1.25),
     (min-resolution: 1.25dppx),
     (min-resolution: 120dpi) {
     /* Style adjustments for high resolution devices */
   }
   
   /* ==========================================================================
      Print styles.
      Inlined to avoid the additional HTTP request:
      https://www.phpied.com/delay-loading-your-print-css/
      ========================================================================== */
   
   @media print {
     *,
     *:before,
     *:after {
       background: transparent !important;
       color: #000 !important;
       /* Black prints faster */
       -webkit-box-shadow: none !important;
       box-shadow: none !important;
       text-shadow: none !important;
     }
     a,
     a:visited {
       text-decoration: underline;
     }
     a[href]:after {
       content: " (" attr(href) ")";
     }
     abbr[title]:after {
       content: " (" attr(title) ")";
     }
     /*
        * Don't show links that are fragment identifiers,
        * or use the `javascript:` pseudo protocol
        */
     a[href^="#"]:after,
     a[href^="javascript:"]:after {
       content: "";
     }
     pre {
       white-space: pre-wrap !important;
     }
     pre,
     blockquote {
       border: 1px solid #999;
       page-break-inside: avoid;
     }
     /*
        * Printing Tables:
        * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
        */
     thead {
       display: table-header-group;
     }
     tr,
     img {
       page-break-inside: avoid;
     }
     p,
     h2,
     h3 {
       orphans: 3;
       widows: 3;
     }
     h2,
     h3 {
       page-break-after: avoid;
     }
   }
   
   .main-ban {
     height: 100%;
     display: table;
     width: 100%;
   }
   .container {
     max-width: 1330px;
     margin: 0 auto;
   }
   .tandc{
     padding:15px;
   }
   
   .group-left {
    width:100%;
    height:auto;
    float: left;
   }
   .group-left .group-content {
     width:100%;
     height:60%;
     padding: 5% 1% 5% 4%;
   }

   .group-right {
     width:100%;
     padding: 6% 5% 60% 5%;
     margin: 0;
     height: auto;
     background: url(../img/banner-image.jpg) no-repeat center bottom;
     box-sizing: border-box;
     background-size: 100% auto;
   }
   .field-title {
     float: left;
     width: 48%;
     padding-left: 15px;
     padding-top: 40px;
   }
   .field-title h1 {
     font-size: 19px;
     line-height: 1.1;
     font-family: 'OpenSans', Helvetica, sans-serif;
   }
   .field-title h1 b{
     font-size:44px;
     font-family: 'OpenSans', Helvetica, sans-serif;
     display: block;
   }
   .logo {
     float: right;
     width: 52%;
     text-align: right;
   }
   .logo img{
     width: 156px;
   }
   
   /* FORM STYLES */
   
   iframe {
     border: 0;
     width: 100%;
   }
   /* label {
     font-family: 'Gotham-Medium', Helvetica, sans-serif;
   } */
   
   .ques-from p {
     font-size: 20px;
     line-height: 1.5;
     padding-bottom: 20px;
   }
   
   /* Thank you Page */
   .btn-facebook {
     background: #3B5998;
     color: #fff;
     border: 0px;
     border-style: solid;
     font-size: 15px;
     text-decoration: none;
     border-color: #263961;
     padding: 15px 44px;
     border-radius: 35px;
     position: relative;
   }
   .btn-facebook:hover{
     background: #263961;
   }
   
   .socico {
    width: 20px;
    margin-right: 5px;
  }

  /* POPUP style */
  .hover_bkgr_fricc{
    background:rgba(0,0,0,.4);
    cursor:pointer;
    display:none;
    height:100%;
    position:fixed;
    text-align:center;
    top:0;
    width:100%;
    z-index:10000;
}
.hover_bkgr_fricc .helper{
    display:inline-block;
    height:100%;
    vertical-align:middle;
}
.hover_bkgr_fricc > div {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 551px;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
}
.popupCloseButton {
    background-color: #fff;
    border: 3px solid #999;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}
.popupCloseButton:hover {
    background-color: #ccc;
}
.trigger_popup_fricc {
    cursor: pointer;
    font-size: 20px;
    margin: 20px;
    display: inline-block;
    font-weight: bold;
}
/* *** */
   @media (min-width: 480px) {
     .group-right {
       padding: 0 5% 55% 6%;
     }
     .field-title {
       padding-top: 10px;
     }
     .field-title h1{
       font-size: 30px;
     }
     .field-title h1 b{
       font-size: 68px;
     }
   }

   /*footer style*/
   #dg_footer_wrapper {
     background: #000 !important;
     text-transform: uppercase;
   }
   #dg_footer_wrapper #dg_footer_wrapper_inner .dg_footer_row_0 {
     font-size: 11px;
     font-family: Arial, sans-serif;
     font-weight: normal;
     line-height: 30px;
   }
   #dg_footer_wrapper #dg_footer_wrapper_inner .dg_footer_row_0 a{
     color:#fff;
   }
   
   .dg_footer_item_7::after, .dg_footer_item_8::after{
     content:none;
   }
   
   #dg_footer_wrapper_inner {
   text-align: center;
   width: 1100px;
   }
   
   #dg_footer_wrapper_inner ul li {
     float: none;
     line-height: 3;
   }
   #dg_footer_wrapper #dg_footer_wrapper_inner ul li span{
   color: #fff;
   }
   
   #dg_footer_wrapper_inner ul li:after {
     content: "|";
     display: inline;
     color:#fff;
   }
   
   #dg_footer_wrapper_inner .dg_footer_row_2 a,
   #dg_footer_wrapper_inner .dg_footer_row_2 a:hover {
   color: #fff;
   }
   
   #dg_footer_wrapper_inner .dg_footer_row_2,
   #dg_footer_wrapper_inner ul li span {
   color: #fff;
   }
   
   @media (min-width: 768px) {
     .group-left {
       position: fixed;
       height: 100%;
       width: 50%;
       top:0;
       left:0;
       z-index: -1;
     }
     .group-left .group-content {
       padding: 8% 1% 5% 12%;
       height: 100%;
       background: url(../img/banner-image.jpg) no-repeat center bottom;
       margin: 0px;
       box-sizing: border-box;
       background-size: 100% auto;
     }
     .group-right {
       width:50%;
       height: auto;
       padding: 2% 5% 0 5%;
       margin: 0;
       display: table-cell;
       background: none;
     }
     .logo img{
       width: 180px;
     }
     .field-title {
       padding-left: 0px;
       padding-top: 38px;
     }
     .field-title h1 {
       font-size: 30px;
     }
     .field-title h1 b{
       font-size: 68px
     }
     .ques-from p {
     padding: 40px 0;
     }
   }
   
   @media (min-width: 1024px) {
    .logo img{
      width: 250px;
    }
   }
   

.group-left{
  background: none;
 }
@media (max-width: 767px) {
  .group-right {
      background: none;
      padding-bottom: 0;
  }
  .group-left {
    width: 100%;
    height: auto;
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
    background: url(../img/banner-image.jpg) no-repeat center top;
    box-sizing: border-box;
    background-size: 100% auto;
    padding-top: 0;
    min-height: 400px;
    max-height: 400px;
    overflow: hidden;
}

}


@media only screen and (min-device-width: 480px) 
                   and (max-device-width: 767px) 
                   and (orientation: landscape) { 
.group-left {
    background-size: 100% 100%;
    min-height: 500px;
    max-height: 500px;
}
  
}
 
