/*------------------------------------------
Document: responsive.css (Style Sheet)
Dated 	: September 2023
Author	: Antony Yesudas
Company	: Syndicate Solutions (gsttaxlegalconsultants.com)
Purpose	: Mobile/iPad/Tab/Laptop Responsiveness
------------------------------------------------*/

/*___________________ LARGE SCREEN  _______________________*/


@media (max-width: 1440px) {

  body {
    border-left: 0px solid orange;
  }
  .canvas {
    width: 70%;
  }
}


@media (max-width: 1350px) {
  
  body {
    border-left: 0px solid green;
  }
  
  #successfull h3 {
    font-size: 35pt;
  }

}


/*____________________ DESKTOPS  __________________________*/


@media (max-width: 1199px) {

  body {
    border-left: 0px solid blue;
  }
  .canvas {
    width: 80%;
  }
  
  #social-icon {
    display: none;
  }
  
  #address {
    position: initial;
    margin-bottom: 20px;
  }
  
}


/*____________________ IPAD/TABLET  __________________________*/

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

  body {
    border-left: 0px solid yellow;
  }
  .canvas {
    width: 100%;
  }
  
  .cssanimation span {
    display: inline !important;
  }
  
  #Menu {
    float: right;
  }
  
  .boxcard {
    width: 420px;
    margin: 10px auto 20px;
  }
  
  #sylvia {
    margin-bottom:40px;
  }
  
  #activities h3 {
    text-align: center;
  }
  
  #successfull {
    text-align: center;
  }

  .relationships {
    margin: 10px;
  }
  
  .links {
    margin-top: 20px;
  }
  
  .areas {
    margin: 30px 0px;
  }
  
  .service {
    position: initial;
  }
  
  .worklist {
    padding: 40px 20px;
  }  
  .worklist ul {
    width: auto;
    padding-left: 0px;
  }
}


/*____________________ SMART PHONES  _________________________*/

@media only screen and ( max-width: 767px) {
  
  body {
    border-left: 0px solid red;
  }
  
  .canvas {
    top: 20vh;
  }
  .canvas .caption {
    font-size: 40pt;
  }
  .sentence {
    height: 95px;
    padding-left: 15px;
  }
  
}

/*____________________ MOBILES  __________________________*/

@media only screen and ( max-width: 576px) 
{
  body {
    border-left: 0px solid blue;
  }
  .canvas .caption {
    font-size: 35pt;
  }
  
  #address {
    padding: 30px;
  }
  
  .boxcard {
    width: auto;
  }
  
  #cornerstone {
    padding: 20px 0px;
  }
  
  #feedback .matter {
    padding: 40px 20px 30px 20px;
  }
  
  
}


/*____________________ TINY DEVICES  __________________________*/

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

  body {
    border-left: 0px solid yellow;
  }
  
  h3 {
    font-size: 30pt;
  }
  
}

@media only screen and (max-width: 380px)
{
}

@media only screen and (max-width: 320px)
{
}

