* {
    box-sizing: border-box;
}

body
{
    font-family: "Poppins", sans-serif ;
    background: #272044;
}

.container
{
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box; 
}

header
{
    background-image:linear-gradient(rgba(0,0,0,0.4) , rgba(0,0,0,0.6)),url("..//images/TTDubai.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center; 
    padding: 200px;
}

header h1
{
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    margin: 30px 0;
}

header h2
{
    font-weight: 400;
    font-size: 40px;
    line-height: 1.5;
    margin: 0;
}

header h3
{
    font-weight: 900;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 5px;
    margin: 0;
}

header a 
{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    padding: 16px 32px;
    margin-top: 32px ;
    display: inline-block;

    color: #272044;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: white;
    text-decoration: none;
}


section
{
    max-width: 100%;
    margin: 0 auto;
    padding: 50px;
}

section.secondary {
  background: #f8f8f8;
}

.grid
{
  display: grid;
  grid-gap: 64px ;
}

.grid-2-cols
{
     grid-template-columns: 1fr 1fr;
}

.grid-3-cols
{
    grid-template-columns: 1fr 2fr 2fr ;
}


.grid-3-cols-n
{
    grid-template-columns: 1fr 1fr 1fr;
}

.card {
  background: white;
  margin: 30px 0;
}

.card-header.grid{
  grid-gap: 0;
}


.card-body {
  padding: 30px;
}

.card-footer {
  padding: 0 30px 30px;
}

.btn {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background-color: #462cb3;
  text-decoration: none;
}

.text-center 
{
  text-align: center;
}

.embed {
  width: 100%;
  aspect-ratio: 1/1;
}

.instagram-embeds {
  margin: 30px 0;
}


footer
{
    color: white;
    background-image: linear-gradient(rgba(39,32,68,0.7),rgba(39,32,68,0.8)), url("../images/footerBR.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 60px;
}


footer h3
{
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

footer p 
{
  font-weight: 400;
  font-size: 16px;
  opacity: 0.7;
  line-height: 24px;
}

footer ul 
{
  padding: 0;
}

footer li 
{
  list-style: none;
  margin: 0;
  padding: 0;
}

footer a
{
  color: white;
  opacity: 0.7;
}


main
{
    background-color: white;
}

main h2
{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 5px;
    color: #272044;
    opacity: 0.3;
    text-transform: uppercase;
    margin: 0;
}

main h3
{
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    color: #272044;
}

main p
{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #272044;
    opacity: 0.7;
}

.img-responsive
{
    width: 100%;
    
}


@media(max-width: 960px) {
    header {
        padding: 60px 20px !important;
    }

    body{
      word-wrap: break-word; 
        overflow-wrap: break-word; 
        max-width: 100%; 
    }
    
    header h1 {
        font-size: 48px;
    }
    
    header h2 {
        font-size: 20px;
    }
    
    header h3 {
        font-size: 12px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        grid-gap: 32px;
        width: 100%;
        overflow: hidden;
    }
    
    .grid > * {
        min-width: 0;
    }
    
    section {
        padding: 30px 15px !important;
    }
    
    .card-header img {
        display: none;
    }
    
    .embed {
        aspect-ratio: 16 / 9;
        max-width: 100%;
    }
    
    footer {
        padding: 30px 15px !important;
    }
}
    
